forked from Shardstone/trail-into-darkness
11 lines
173 B
C#
11 lines
173 B
C#
#nullable enable
|
|
|
|
namespace Nox.Game.UI {
|
|
public interface IMenuView {
|
|
void Initialize();
|
|
void Show();
|
|
void Hide();
|
|
void Tick();
|
|
}
|
|
}
|