Interface
This commit is contained in:
parent
63be02d2a6
commit
d90f819d68
9 changed files with 178 additions and 0 deletions
9
scripts/utils/Actor.gd
Normal file
9
scripts/utils/Actor.gd
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue