mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
12 lines
184 B
C#
12 lines
184 B
C#
using TEngine;
|
|
|
|
namespace GameLogic
|
|
{
|
|
[EventInterface(EEventGroup.GroupUI)]
|
|
public interface ILoginUI
|
|
{
|
|
void ShowLoginUI();
|
|
|
|
void CloseLoginUI();
|
|
}
|
|
} |