aboutsummaryrefslogtreecommitdiff
path: root/game/src/Game/GlobalClass/NationManagement.gd
diff options
context:
space:
mode:
author Hop311 <Hop3114@gmail.com>2024-02-19 21:35:07 +0100
committer GitHub <noreply@github.com>2024-02-19 21:35:07 +0100
commit275cfbb62fe69828aeb9968110ad822447322a4e (patch)
tree15fe433ba9259623e2cb90a0ea7ae6a5c2f364b8 /game/src/Game/GlobalClass/NationManagement.gd
parente4de451ce753dd8786546b9e2c94c579c8dab52e (diff)
parent1455861632cd50f48f6e8ef8c50004087eff36f1 (diff)
Merge pull request #202 from OpenVicProject/nation-management-screens
Basic Nation Management Screen framework
Diffstat (limited to 'game/src/Game/GlobalClass/NationManagement.gd')
-rw-r--r--game/src/Game/GlobalClass/NationManagement.gd13
1 files changed, 13 insertions, 0 deletions
diff --git a/game/src/Game/GlobalClass/NationManagement.gd b/game/src/Game/GlobalClass/NationManagement.gd
new file mode 100644
index 0000000..3b73bde
--- /dev/null
+++ b/game/src/Game/GlobalClass/NationManagement.gd
@@ -0,0 +1,13 @@
+class_name NationManagement
+
+enum Screen {
+ NONE,
+ PRODUCTION,
+ BUDGET,
+ TECHNOLOGY,
+ POLITICS,
+ POPULATION,
+ TRADE,
+ DIPLOMACY,
+ MILITARY
+}