rnd-20060812-2-src
[rocksndiamonds.git] / src / game.h
index 10ae3eaf9e7a8378f79daecd7055b6d2be1bddef..1718f8357a61448cb2cb43868cb55521741c5b5a 100644 (file)
 #define MAX_NUM_KEYS           8
 
 
+struct GamePanelInfo
+{
+  struct XY level;
+  struct XY gems;
+  struct XY inventory;
+  struct XY keys;
+  struct XY score;
+  struct XY time;
+};
+
 struct GameInfo
 {
+  /* values for control panel */
+  struct GamePanelInfo panel;
+
   /* values for engine initialization */
   int default_push_delay_fixed;
   int default_push_delay_random;
@@ -115,6 +128,8 @@ struct PlayerInfo
 
   int last_move_dir;
 
+  boolean is_active;
+
   boolean is_waiting;
   boolean is_moving;
   boolean is_auto_moving;