14 lines
289 B
C#
14 lines
289 B
C#
using Chickensoft.GodotNodeInterfaces;
|
|
using Godot;
|
|
using System.Collections.Immutable;
|
|
|
|
namespace GameJamDungeon;
|
|
public interface IDungeonFloor : INode3D
|
|
{
|
|
void InitializeDungeon();
|
|
|
|
public Transform3D GetPlayerSpawnPoint();
|
|
|
|
public ImmutableList<IDungeonRoom> Rooms { get; }
|
|
}
|