diff options
author | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-07 15:10:25 +0100 |
---|---|---|
committer | Max-001 <maxsmits21@kpnmail.nl> | 2025-01-07 15:10:25 +0100 |
commit | a7bb9c455f8ebd197d1651d85efebd18f5ac971f (patch) | |
tree | e72b7ed1260197fede9f8c8579e8ef7215acc81f /game | |
parent | f31bd86ae5d7df21b788a273d4f2e530136ec184 (diff) |
Added the whole background
Diffstat (limited to 'game')
-rw-r--r-- | game/background/BackgroundSubScene.cpp | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/game/background/BackgroundSubScene.cpp b/game/background/BackgroundSubScene.cpp index 6fdc598..a7ac916 100644 --- a/game/background/BackgroundSubScene.cpp +++ b/game/background/BackgroundSubScene.cpp @@ -34,4 +34,50 @@ BackgroundSubScene::BackgroundSubScene(Scene & scn) { begin_x = hallway.create(scn, begin_x, 4, Color::GREEN); begin_x = aquarium.create(scn, begin_x); + + begin_x = hallway.create(scn, begin_x, 5, Color::RED); + + begin_x = forest.create(scn, begin_x, "3"); + + begin_x = hallway.create(scn, begin_x, 6, Color::BLUE); + + begin_x = aquarium.create(scn, begin_x); + + begin_x = hallway.create(scn, begin_x, 7, Color::WHITE); + + begin_x = forest.create(scn, begin_x, "4"); + + begin_x = hallway.create(scn, begin_x, 8, Color::YELLOW); + + begin_x = aquarium.create(scn, begin_x); + + begin_x = hallway.create(scn, begin_x, 9, Color::MAGENTA); + + begin_x = forest.create(scn, begin_x, "5"); + + begin_x = hallway.create(scn, begin_x, 10, Color::CYAN); + + begin_x = aquarium.create(scn, begin_x); + + begin_x = hallway.create(scn, begin_x, 11, Color::GREEN); + + begin_x = forest.create(scn, begin_x, "6"); + + begin_x = hallway.create(scn, begin_x, 12, Color::RED); + + begin_x = aquarium.create(scn, begin_x); + + begin_x = hallway.create(scn, begin_x, 13, Color::BLUE); + + begin_x = forest.create(scn, begin_x, "7"); + + begin_x = hallway.create(scn, begin_x, 14, Color::WHITE); + + begin_x = aquarium.create(scn, begin_x); + + begin_x = hallway.create(scn, begin_x, 15, Color::YELLOW); + + begin_x = forest.create(scn, begin_x, "8"); + + begin_x = hallway.create(scn, begin_x, 16, Color::MAGENTA); } |