diff options
Diffstat (limited to 'Client/Assets/Scripts/UILib/IUIPanel.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IUIPanel.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IUIPanel.cs b/Client/Assets/Scripts/UILib/IUIPanel.cs new file mode 100644 index 00000000..01a523a3 --- /dev/null +++ b/Client/Assets/Scripts/UILib/IUIPanel.cs @@ -0,0 +1,8 @@ +using System;
+
+namespace UILib
+{
+ public interface IUIPanel : IUIRect
+ {
+ }
+}
|