Files
2026-03-19 18:12:07 +01:00

24 lines
470 B
C#

namespace Nox.Core {
public enum PlayMode {
None,
PauseMenu,
Adventure,
Town,
Rest,
Combat
}
/// <summary>
/// Prototype for crating new game modes
/// </summary>
public interface IPlayMode {
bool IsGameModeInitialized { get;}
public void EnterPlayMode();
public void Tick();
public void LateTick();
void ExitGameMode();
void Dispose();
}
}