forked from Shardstone/trail-into-darkness
added encounter system
This commit is contained in:
19
Assets/Code/GameState/PlayModes/Encounters/EncounterView.cs
Normal file
19
Assets/Code/GameState/PlayModes/Encounters/EncounterView.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user