diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-08-30 22:38:56 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-08-30 22:38:56 +0000 |
| commit | cd7a3519a7a4e9914906d96b603cefdbf3a58a0e (patch) | |
| tree | 75d5121c24bc6f449e399a227fcf7553f73e811f /src/game/client/components/menus.hpp | |
| parent | 432602c4ca5d47aee91d25271fa57ad0f6d67250 (diff) | |
| download | zcatch-cd7a3519a7a4e9914906d96b603cefdbf3a58a0e.tar.gz zcatch-cd7a3519a7a4e9914906d96b603cefdbf3a58a0e.zip | |
added the loading screen again
Diffstat (limited to 'src/game/client/components/menus.hpp')
| -rw-r--r-- | src/game/client/components/menus.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game/client/components/menus.hpp b/src/game/client/components/menus.hpp index 71128498..f1c87270 100644 --- a/src/game/client/components/menus.hpp +++ b/src/game/client/components/menus.hpp @@ -72,7 +72,7 @@ class MENUS : public COMPONENT // found in menus.cpp int render(); void render_background(); - void render_loading(float percent); + //void render_loading(float percent); int render_menubar(RECT r); void render_news(RECT main_view); void render_game(RECT main_view); @@ -91,6 +91,10 @@ class MENUS : public COMPONENT public: MENUS(); + void render_loading(float percent); + + bool is_active() const { return menu_active; } + void init(); virtual void on_statechange(int new_state, int old_state); |