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