RecastFileReader.cs 235 B

123456789101112
  1. using System.IO;
  2. namespace ET
  3. {
  4. public static class RecastFileReader
  5. {
  6. public static byte[] Read(string name)
  7. {
  8. return File.ReadAllBytes(Path.Combine("../Config/Recast", name));
  9. }
  10. }
  11. }