Reworked for tabs. Added Player

This commit is contained in:
2025-10-20 18:25:45 +03:00
parent fb037f58a7
commit be3db76fe2
17 changed files with 281 additions and 189 deletions
+7
View File
@@ -1 +1,8 @@
extends Node
func _ready() -> void:
var player : Node2D = load("res://game/entities/player.tscn").instantiate()
player.position = Vector2(100, 100)
add_child(player)