Files
trail-into-darkness/Assets/Code/GameState/PlayModes/Encounters/EncounterView.cs
2026-04-19 12:46:44 +02:00

20 lines
480 B
C#

using Nox.Game.UI;
namespace Nox.Game {
public class EncounterView : IMenuView{
public void Initialize() {
throw new System.NotImplementedException();
}
public void Show() {
throw new System.NotImplementedException();
}
public void Hide() {
throw new System.NotImplementedException();
}
public void Tick() {
throw new System.NotImplementedException();
}
}
}