diff options
| author | chai <215380520@qq.com> | 2023-05-18 11:00:32 +0800 |
|---|---|---|
| committer | chai <215380520@qq.com> | 2023-05-18 11:00:32 +0800 |
| commit | c66fe8c43a368eb4b23aa1e3104019aabf9e2274 (patch) | |
| tree | a3d87d16358bb38feb745213356202f16649fa10 /WorldlineKeepers/Assets/Scripts/Data/Filelist.cs | |
| parent | fdae57bc757aed8c45b725572622c8268591688f (diff) | |
*misc
Diffstat (limited to 'WorldlineKeepers/Assets/Scripts/Data/Filelist.cs')
| -rw-r--r-- | WorldlineKeepers/Assets/Scripts/Data/Filelist.cs | 41 |
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; + } + +} |
