using Chickensoft.GodotNodeInterfaces; using Godot; using System.Collections.Immutable; namespace Zennysoft.Game.Ma; public interface IDungeonRoom : INode3D { bool IsPlayerInRoom { get; } bool PlayerDiscoveredRoom { get; } ImmutableList EnemiesInRoom { get; } }