Split project

This commit is contained in:
2023-05-07 02:18:48 +02:00
parent 85cdecca12
commit 82135428d0
19 changed files with 384 additions and 751 deletions

View File

@@ -0,0 +1,12 @@
extends Resource
class_name Status
@export var lives: int
@export var score: int
@export var bullets: int
func from_object_data(data: ObjectData):
lives = data["lives"]
score = data["score"]
bullets = data["bullets"]