Reworked weapons and projectiles

This commit is contained in:
2025-12-20 18:35:27 +03:00
parent 2ecc53416a
commit 8227e8bcf3
312 changed files with 2466 additions and 1376 deletions
+16
View File
@@ -0,0 +1,16 @@
class_name PlayerData
extends Resource
@export var weapons: Array[WeaponData]
@export var hull: int
var is_new_game: bool = false
func reset() -> void:
weapons.clear()
hull = 0
is_new_game = true