1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-21 00:47:40 +00:00

Updated to 9.4f (tutorial)

This commit is contained in:
Zeno Rogue
2017-04-08 17:18:29 +02:00
parent 38206e5149
commit 9c350ed761
18 changed files with 2484 additions and 64 deletions

21
hyper.h
View File

@@ -1127,3 +1127,24 @@ void clearHexes(heptagon *at);
void verifycells(heptagon *at);
int zebra40(cell *c);
cell *createMov(cell *c, int d);
#ifndef MOBWEB
#ifndef TOUR
#define TOUR
#endif
#endif
#ifdef TOUR
namespace tour {
extern bool on;
extern string tourhelp;
bool handleKeyTour(int sym, int uni);
void presentation(int mode);
int getid();
eLand getNext(eLand old);
bool quickfind(eLand next);
void start();
};
#endif