Base version of game

This commit is contained in:
VoidTwo
2021-10-19 12:58:01 -05:00
parent 503bbd7cc2
commit 4ed75ff93b
50 changed files with 1193 additions and 0 deletions

5
World.gd Normal file
View File

@@ -0,0 +1,5 @@
extends Node2D
func _ready() -> void:
$YSort/Player.position = get_viewport_rect().size / 2
return