aboutsummaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
authorMax-001 <maxsmits21@kpnmail.nl>2024-12-21 11:38:19 +0100
committerMax-001 <maxsmits21@kpnmail.nl>2024-12-21 11:38:19 +0100
commit799a376aeecd9bdc712e89324cbe9153206839c9 (patch)
tree6e67d6874484ff1a65f4845b90990fae427f53ab /game
parentd2af158ac63ab05b2fbfdcdf1b483662e48c0544 (diff)
Added comments
Diffstat (limited to 'game')
-rw-r--r--game/Config.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/game/Config.h b/game/Config.h
index 7a83ee6..0d6f880 100644
--- a/game/Config.h
+++ b/game/Config.h
@@ -1,11 +1,9 @@
#pragma once
-static constexpr int SORT_IN_LAY_BACK_BACKGROUND = 3;
-static constexpr int SORT_IN_LAY_BACKGROUND = 4;
-static constexpr int SORT_IN_LAY_FORE_BACKGROUND = 5;
-static constexpr int SORT_IN_LAY_PARTICLES_BACKGROUND = 6;
-static constexpr int SORT_IN_LAY_OBSTACLES = 8;
-static constexpr int SORT_IN_LAY_PLAYER = 10;
-static constexpr int SORT_IN_LAY_PARTICLES_FOREGROUND = 15;
-
-
+static constexpr int SORT_IN_LAY_BACK_BACKGROUND = 3; // For all scenes
+static constexpr int SORT_IN_LAY_BACKGROUND = 4; // For all scenes
+static constexpr int SORT_IN_LAY_FORE_BACKGROUND = 5; // For all scenes
+static constexpr int SORT_IN_LAY_PARTICLES_BACKGROUND = 6; // For all scenes
+static constexpr int SORT_IN_LAY_OBSTACLES = 8; // Only for GameScene
+static constexpr int SORT_IN_LAY_PLAYER = 10; // Only for GameScene
+static constexpr int SORT_IN_LAY_PARTICLES_FOREGROUND = 15; // Only for GameScene