blob: 623faf030974a19bfdbda6587ee6bd91916c7517 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#if UNITY_EDITOR
using UnityEngine;
using System.Collections;
using XUtliPoolLib;
public class XTableReader
{
public static bool ReadFile(string location, CVSReader reader)
{
CVSReader.Init();
XBinaryReader.Init();
return XResourceLoaderMgr.singleton.ReadFile(location, reader);
}
}
#endif
|