forked from Shardstone/trail-into-darkness
20 lines
480 B
C#
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();
|
|
}
|
|
}
|
|
}
|