blob: 8d72ee108f65c9ab067ccf4d7f81df43b4748be9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|