#nullable enable namespace Nox.Game.UI { public interface IMenuView { void Initialize(); void Show(); void Hide(); void Tick(); } }