mirror of
https://github.com/Theaninova/mhlib.git
synced 2025-12-12 12:36:17 +00:00
13 lines
223 B
GDScript
13 lines
223 B
GDScript
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"]
|