using System; namespace StateSystem.Loader { public interface ILoader { void BeginLoad(Action onLoading, Action onComplete); void Active(); } }