diff options
author | Max Horn | 2003-03-06 02:33:49 +0000 |
---|---|---|
committer | Max Horn | 2003-03-06 02:33:49 +0000 |
commit | b525feba246b69f8770365288fd5ac0e8c2dd925 (patch) | |
tree | 8cadd41bb580c2b98f09397cb9dab88cab8673dd | |
parent | cdf8d38c325327bef3e0555a3d23adf89ada9595 (diff) | |
download | scummvm-rg350-b525feba246b69f8770365288fd5ac0e8c2dd925.tar.gz scummvm-rg350-b525feba246b69f8770365288fd5ac0e8c2dd925.tar.bz2 scummvm-rg350-b525feba246b69f8770365288fd5ac0e8c2dd925.zip |
no need to have this all public...
svn-id: r6703
-rw-r--r-- | sky/sky.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -27,8 +27,8 @@ #include "common/util.h" class SkyState : public Engine { -public: - + +protected: byte _game; byte _key_pressed; @@ -60,9 +60,11 @@ public: byte *_game_grid; +public: SkyState(GameDetector *detector, OSystem *syst); virtual ~SkyState(); +protected: void delay(uint amount); void pollMouseXY(); void go(); @@ -82,8 +84,6 @@ public: void shutdown(); RandomSource _rnd; - - }; #endif |