mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-20 16:37:40 +00:00
gp:: texture:: menu added
This commit is contained in:
4
hyper.h
4
hyper.h
@@ -740,7 +740,7 @@ extern videopar vid;
|
||||
|
||||
extern vector< function<void()> > screens;
|
||||
|
||||
template<class T> void pushScreen(T& x) { screens.push_back(x); }
|
||||
template<class T> void pushScreen(const T& x) { screens.push_back(x); }
|
||||
inline void popScreen() { screens.pop_back(); }
|
||||
inline void popScreenAll() { while(size(screens)>1) popScreen(); }
|
||||
|
||||
@@ -2988,7 +2988,7 @@ namespace gp {
|
||||
extern string operation_name();
|
||||
extern int pseudohept_val(cell *);
|
||||
extern int last_dir(cell *c);
|
||||
extern void configure();
|
||||
extern void configure(bool texture_remap);
|
||||
extern ld alpha;
|
||||
extern transmatrix Tf[8][32][32][6];
|
||||
|
||||
|
Reference in New Issue
Block a user