diff options
author | jacopograndi <jak.sk8@hotmail.it> | 2021-08-30 14:48:06 +0200 |
---|---|---|
committer | jacopograndi <jak.sk8@hotmail.it> | 2021-08-30 14:48:06 +0200 |
commit | fb5a98b72ab79949d1da7f75a3d6150c2906ef40 (patch) | |
tree | 9097b4e1f31e530874df9ab85be03f763fc4ef1b /game/view.h | |
parent | ace5c3f3093c50ff7fa6f8b281a377e3788abbd5 (diff) |
gui: tech representation, menu, tile & unit info, attack info
Diffstat (limited to 'game/view.h')
-rw-r--r-- | game/view.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/game/view.h b/game/view.h index a9d196b..5aab193 100644 --- a/game/view.h +++ b/game/view.h @@ -13,6 +13,7 @@ class View { vec2 res; + int hover_ground {-1}; int selected_ground {-1}; int selected_entity {-1}; int cursor_ground {-1}; @@ -27,6 +28,7 @@ class View { Menu_day menu_day; Menu_build menu_build; Menu_train menu_train; + Menu_tech menu_tech; void process (Gst &gst, vec2 cam, vec2 mouse, int *mheld); }; |