using GameCore.ECS; using Godot; namespace cryptonymthunder.Code.Interfaces; public interface IDoorBehavior { void Initialize(Node3D doorNode, World world); void UpdateProgress(float progress, float delta); }