9 lines
123 B
C#
9 lines
123 B
C#
namespace WorldOfPeacecraft
|
|
{
|
|
public interface IGui
|
|
{
|
|
void PerformRefresh();
|
|
void SetBackend(IBackend backend);
|
|
}
|
|
}
|