summaryrefslogtreecommitdiff
path: root/Client/Assembly-CSharp/HatBehaviour.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assembly-CSharp/HatBehaviour.cs')
-rw-r--r--Client/Assembly-CSharp/HatBehaviour.cs34
1 files changed, 34 insertions, 0 deletions
diff --git a/Client/Assembly-CSharp/HatBehaviour.cs b/Client/Assembly-CSharp/HatBehaviour.cs
new file mode 100644
index 0000000..95d4b25
--- /dev/null
+++ b/Client/Assembly-CSharp/HatBehaviour.cs
@@ -0,0 +1,34 @@
+using System;
+using UnityEngine;
+
+[CreateAssetMenu]
+public class HatBehaviour : ScriptableObject, IBuyable
+{
+ public string ProdId
+ {
+ get
+ {
+ return this.ProductId;
+ }
+ }
+
+ public Sprite MainImage;
+
+ public Sprite FloorImage;
+
+ public bool InFront;
+
+ public bool Free;
+
+ public int LimitedMonth;
+
+ public int LimitedYear;
+
+ public SkinData RelatedSkin;
+
+ public string StoreName;
+
+ public string ProductId;
+
+ public int Order;
+}