IConfigLoader.cs 218 B

12345678910
  1. using System.Collections.Generic;
  2. namespace ET
  3. {
  4. public interface IConfigLoader
  5. {
  6. void GetAllConfigBytes(Dictionary<string, byte[]> output);
  7. byte[] GetOneConfigBytes(string configName);
  8. }
  9. }