aboutsummaryrefslogtreecommitdiff
path: root/examples/game/box.tm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/game/box.tm')
-rw-r--r--examples/game/box.tm2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/game/box.tm b/examples/game/box.tm
index b95fd895..dda3dd83 100644
--- a/examples/game/box.tm
+++ b/examples/game/box.tm
@@ -2,6 +2,6 @@
use ./world.tm
use ./raylib.tm
-struct Box(pos:Vector2, size=Vector2(50, 50), color=Color(0x80,0x80,0x80), blocking=yes):
+struct Box(pos:Vector2, size=Vector2(50, 50), color=Color(0x80,0x80,0x80)):
func draw(b:Box):
DrawRectangleV(b.pos, b.size, b.color)