diff options
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUIInterface.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IXUIInterface.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUIInterface.cs b/Client/Assets/Scripts/UILib/IXUIInterface.cs new file mode 100644 index 00000000..e80ac9ab --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUIInterface.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace UILib
+{
+ public interface IXUIInterface
+ {
+ void ShowUI(string name);
+
+ void HideUI(string name);
+
+ void SetCustomId(string dlgName, string widgetName, uint ID);
+ }
+}
|