summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Data/Filelist.cs
diff options
context:
space:
mode:
Diffstat (limited to 'WorldlineKeepers/Assets/Scripts/Data/Filelist.cs')
-rw-r--r--WorldlineKeepers/Assets/Scripts/Data/Filelist.cs41
1 files changed, 41 insertions, 0 deletions
diff --git a/WorldlineKeepers/Assets/Scripts/Data/Filelist.cs b/WorldlineKeepers/Assets/Scripts/Data/Filelist.cs
new file mode 100644
index 0000000..094c1ea
--- /dev/null
+++ b/WorldlineKeepers/Assets/Scripts/Data/Filelist.cs
@@ -0,0 +1,41 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace WK.Data
+{
+
+ public enum FileType
+ {
+ CSV = 0,
+ Json = 1,
+ Txt = 2,
+ }
+
+ public enum FileRoot
+ {
+ Bundle = 0,
+ Streaming = 1,
+ Persistent = 2,
+ }
+
+ public enum EFileKey
+ {
+ default_stats = 1,
+ default_buffs = 2,
+ default_items = 3,
+ }
+
+ /// <summary>
+ /// ÎļþÁбí
+ /// </summary>
+ public class MetadataFile
+ {
+
+ public string key;
+ public FileType type;
+ public FileRoot root;
+ public string path;
+ }
+
+}