Party progress

This commit is contained in:
2026-01-10 23:00:05 -06:00
parent 6f036aac77
commit 78cc69bffe
15 changed files with 276 additions and 82 deletions

View File

@@ -1,3 +1,8 @@
class_name PartySingleton extends Node
static var PARTY_JOHN = PartyMember.new()
static var PARTY_JOHN = PartyMember.new("John")
static func getFullParty() -> Array[PartyMember]:
return [
PARTY_JOHN
]