diff options
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUITable.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IXUITable.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUITable.cs b/Client/Assets/Scripts/UILib/IXUITable.cs new file mode 100644 index 00000000..b2b8a7dd --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUITable.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace UILib
+{
+ public interface IXUITable
+ {
+ void RePositionNow();
+
+ void RePositionOnlyOneLevel();
+
+ void Reposition();
+ }
+}
|