Interface

This commit is contained in:
Иван Кузьменко 2023-03-18 20:37:33 +03:00
parent 63be02d2a6
commit d90f819d68
9 changed files with 178 additions and 0 deletions

9
scripts/utils/Actor.gd Normal file
View file

@ -0,0 +1,9 @@
class_name Actor
@export var x : int
@export var y : int
@export_range(0, 3) var direction : int
@export var world_object : Node3D
func update_world() -> void:
pass