]> git.localhorst.tv Git - l2e.git/blobdiff - src/common/GameState.h
removed stupid file headers that eclipse put in
[l2e.git] / src / common / GameState.h
index 078da1a3738cba03eeae82eadbe2c8d0711eca54..bcaea523ab497d3cc376a4e87cdea7b5010c37ed 100644 (file)
@@ -1,10 +1,3 @@
-/*
- * GameState.h
- *
- *  Created on: Oct 7, 2012
- *      Author: holy
- */
-
 #ifndef COMMON_GAMESTATE_H_
 #define COMMON_GAMESTATE_H_
 
@@ -28,6 +21,24 @@ struct GameState {
        Uint32 money;
        Uint32 time;
 
+       enum MessageSpeed {
+               MESSAGE_SPEED_FAST,
+               MESSAGE_SPEED_NORMAL,
+               MESSAGE_SPEED_SLOW,
+       };
+       enum Cursor {
+               CURSOR_CLEAR,
+               CURSOR_MEMORY,
+       };
+       enum Music {
+               MUSIC_STEREO,
+               MUSIC_MONO,
+       };
+       int messageSpeed;
+       int battleCursor;
+       int statusCursor;
+       int music;
+
 };
 
 }