diff options
Diffstat (limited to 'stage/stage.gd')
-rw-r--r-- | stage/stage.gd | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/stage/stage.gd b/stage/stage.gd new file mode 100644 index 0000000..8d72ee1 --- /dev/null +++ b/stage/stage.gd @@ -0,0 +1,15 @@ +class_name Stage +extends Node2D + + +func get_world_boundaries() -> Dictionary: #Dictionary[Vector2, float] + return { + Vector2.LEFT: 0.0, + Vector2.RIGHT: 0.0, + Vector2.UP: 0.0, + Vector2.DOWN: 0.0, + } + + +func has_win_condition() -> bool: + return false |