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.cs34
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;
- }
-
-}