Reorganize file structure of project

This commit is contained in:
2026-03-17 14:44:13 -05:00
parent 86e3198645
commit 5a94483ffe
155 changed files with 365 additions and 162 deletions

View File

@@ -0,0 +1,16 @@
extends Node
var _actions_to_ignore: Array[StringName] = []
# Public Methods
func IgnoreAction(action_name: StringName) -> void:
_actions_to_ignore.append(action_name)
func ShouldIgnoreAction(action_name: StringName) -> bool:
return _actions_to_ignore.has(action_name)
# Private Methods
func _process(_delta: float) -> void:
_actions_to_ignore = []