12 lines
251 B
C#
12 lines
251 B
C#
namespace AibisDream.UI
|
|
{
|
|
public interface ITerminalPanelHost
|
|
{
|
|
void SetHeader(string title, string status = "");
|
|
void Back();
|
|
void Close();
|
|
void CloseToMainMenu();
|
|
bool IsInGameContext { get; }
|
|
}
|
|
}
|