diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/DesignationInfo.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/DesignationInfo.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/DesignationInfo.cs b/Client/Assets/Scripts/XMainClient/DesignationInfo.cs new file mode 100644 index 00000000..4e5ce15b --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/DesignationInfo.cs @@ -0,0 +1,30 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ public class DesignationInfo
+ {
+ public bool isNew;
+
+ public int ID;
+
+ public string desName;
+
+ public string explanation;
+
+ public SeqListRef<uint> attribute;
+
+ public string color;
+
+ public bool completed;
+
+ public string effect;
+
+ public string atlas;
+
+ public int sortID;
+
+ public int leftTime;
+ }
+}
|