1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-20 07:30:26 +00:00

rogueviz:: export kind

This commit is contained in:
Zeno Rogue 2018-09-28 01:49:37 +02:00
parent 2e16660278
commit 1a96ffe928
2 changed files with 3 additions and 1 deletions

View File

@ -50,7 +50,6 @@ string fname;
// const char *fname; // const char *fname;
// const char *cfname; // const char *cfname;
enum eVizkind { kNONE, kAnyGraph, kTree, kSpiral, kSAG, kCollatz, kFullNet, kKohonen };
eVizkind kind; eVizkind kind;
bool on; bool on;

View File

@ -3,6 +3,9 @@
namespace rogueviz { namespace rogueviz {
using namespace hr; using namespace hr;
enum eVizkind { kNONE, kAnyGraph, kTree, kSpiral, kSAG, kCollatz, kFullNet, kKohonen };
extern eVizkind kind;
extern bool on; extern bool on;
void drawExtra(); void drawExtra();
void close(); void close();