diff options
author | chai <215380520@qq.com> | 2023-05-31 09:21:51 +0800 |
---|---|---|
committer | chai <215380520@qq.com> | 2023-05-31 09:21:51 +0800 |
commit | dbf4ea119100f571b3710568dfdc2e09dcec2a61 (patch) | |
tree | 50d3721718aeff5944b5baa8d392a1d8cfa1bad1 /WorldlineKeepers/Assets/Scripts/Data/Filelist.cs | |
parent | 2fcb4625389b1594bbefdbaf2e038b2cfffa8ead (diff) |
*misc
Diffstat (limited to 'WorldlineKeepers/Assets/Scripts/Data/Filelist.cs')
-rw-r--r-- | WorldlineKeepers/Assets/Scripts/Data/Filelist.cs | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/WorldlineKeepers/Assets/Scripts/Data/Filelist.cs b/WorldlineKeepers/Assets/Scripts/Data/Filelist.cs deleted file mode 100644 index dc96df9..0000000 --- a/WorldlineKeepers/Assets/Scripts/Data/Filelist.cs +++ /dev/null @@ -1,34 +0,0 @@ -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, - } - - /// <summary> - /// ÎļþÁбí - /// </summary> - public class MetadataFile - { - - public string key; - public FileType type; - public FileRoot root; - public string path; - } - -} |