aboutsummaryrefslogtreecommitdiff
path: root/src/sandbox.cpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2025-05-17 17:35:11 -0700
committerrtk0c <[email protected]>2025-05-17 17:35:11 -0700
commit152580faf7e7665a04be69b4a0e0538cf39c975c (patch)
tree020956f7006965b1b331755bfdf98d256da0e8fa /src/sandbox.cpp
parent508c4ab81a7068986ae818768b1444bbbd83b9c7 (diff)
Interactive buttons
Diffstat (limited to 'src/sandbox.cpp')
-rw-r--r--src/sandbox.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/sandbox.cpp b/src/sandbox.cpp
index 85a4850..d0d918c 100644
--- a/src/sandbox.cpp
+++ b/src/sandbox.cpp
@@ -35,11 +35,6 @@ Sandbox::Sandbox(int w, int h)
, height{ h } //
{
memset(_bitmap.data(), 0xff, _bitmap.size() * sizeof(_bitmap[0]));
- for (int y = 80; y <= 90; ++y) {
- for (int x = 10; x <= 13; ++x) {
- set_sand(x, y, Tile{ .so = Tile::SAND });
- }
- }
}
static void simulate_sand_tile(Sandbox& self, int x, int y) {