mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-02 18:57:56 +00:00
implemented a better system for logging and binary output
This commit is contained in:
11
heptagon.cpp
11
heptagon.cpp
@@ -52,17 +52,6 @@ hstate transition(hstate s, int dir) {
|
||||
return hsError;
|
||||
}
|
||||
|
||||
/*
|
||||
int indent = 0;
|
||||
|
||||
struct indenter {
|
||||
indenter() { indent += 2; }
|
||||
~indenter() { indent -= 2; }
|
||||
};
|
||||
|
||||
template<class... T> auto iprintf(T... t) { for(int i=0; i<indent; i++) putchar(' '); return printf(t...); }
|
||||
*/
|
||||
|
||||
#define COMPUTE -1000000
|
||||
|
||||
// create a new heptagon
|
||||
|
Reference in New Issue
Block a user