diff options
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUIProgress.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IXUIProgress.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUIProgress.cs b/Client/Assets/Scripts/UILib/IXUIProgress.cs new file mode 100644 index 00000000..09c8431c --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUIProgress.cs @@ -0,0 +1,24 @@ +using System;
+using UnityEngine;
+
+namespace UILib
+{
+ public interface IXUIProgress : IXUIObject
+ {
+ float value { get; set; }
+
+ int width { get; set; }
+
+ GameObject foreground { get; }
+
+ void SetValueWithAnimation(float value);
+
+ void SetTotalSection(uint section);
+
+ void SetDepthOffset(int d);
+
+ void SetForegroundColor(Color c);
+
+ void ForceUpdate();
+ }
+}
|