diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XEmblemInfo.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XEmblemInfo.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XEmblemInfo.cs b/Client/Assets/Scripts/XMainClient/XEmblemInfo.cs new file mode 100644 index 00000000..ec819418 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XEmblemInfo.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace XMainClient
+{
+ internal struct XEmblemInfo
+ {
+ public uint level;
+
+ public uint thirdslot;
+
+ public void Init()
+ {
+ this.level = 0u;
+ this.thirdslot = 0u;
+ }
+ }
+}
|