Initial commit

This commit is contained in:
Alexey 2025-07-14 17:13:10 +03:00
commit 97a92fd86b
12 changed files with 220 additions and 0 deletions

10
base/scripts/example.gd Normal file
View file

@ -0,0 +1,10 @@
extends Node2D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
print('hello, gryadki!')
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(_delta: float) -> void:
pass