Overhaul game state logic to support gameplay loop
This commit is contained in:
28
Zennysoft.Game.Ma/src/map/IMap.cs
Normal file
28
Zennysoft.Game.Ma/src/map/IMap.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using Chickensoft.AutoInject;
|
||||
using Chickensoft.GodotNodeInterfaces;
|
||||
using Chickensoft.SaveFileBuilder;
|
||||
using Godot;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Zennysoft.Game.Ma;
|
||||
|
||||
public interface IMap : INode3D, IProvide<ISaveChunk<MapData>>
|
||||
{
|
||||
void LoadMap();
|
||||
|
||||
void LoadFloor();
|
||||
|
||||
List<string> FloorScenes { get; }
|
||||
|
||||
IDungeonFloor CurrentFloor { get; }
|
||||
|
||||
void SpawnNextFloor();
|
||||
|
||||
Transform3D GetPlayerSpawnPosition();
|
||||
|
||||
IDungeonRoom GetPlayersCurrentRoom();
|
||||
|
||||
void InitializeMapData();
|
||||
|
||||
public int CurrentFloorNumber { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user