basic ECS spawner

This commit is contained in:
2026-01-15 15:27:48 +01:00
parent 24a781f36a
commit eb737b469c
860 changed files with 58621 additions and 32 deletions

View File

@@ -0,0 +1,9 @@
class_name E_SerializationTest
extends Entity
func define_components() -> Array:
return [
C_SerializationTest.new(),
C_Persistent.new("TestPlayer", 5, 75.0, Vector2(10.0, 20.0), ["sword", "potion"])
]