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
+17
View File
@@ -0,0 +1,17 @@
class_name GameData
extends Resource
@export var game_seed: String
@export var current_area_index: int
@export var current_stage_index: int
@export var current_sector_index: int
func reset() -> void:
game_seed = ""
current_area_index = 0
current_stage_index = 0
current_sector_index = 0