using System.Collections.Generic; namespace ET { public interface IConfigLoader { void GetAllConfigBytes(Dictionary output); byte[] GetOneConfigBytes(string configName); } }