Пример #1
0
 public UnityRestRequest(HttpVerb verb, string baseUrl, string endpoint, ICoroutineExecuter executer)
 {
     this.verb     = verb;
     this.baseUrl  = baseUrl;
     this.endpoint = endpoint;
     this.executer = executer;
 }
Пример #2
0
 public GameManager(LevelManager levelManager, MainframeController mainframe, ICoroutineExecuter coroutines, float loadSceneTime)
 {
     this.mainframe     = mainframe;
     this.loadSceneTime = loadSceneTime;
     this.levelManager  = levelManager;
     this.coroutines    = coroutines;
 }
Пример #3
0
 public LoginService(ICoroutineExecuter ce)
 {
     _coroutineExecuter = ce;
 }
Пример #4
0
 public ImageService(ICoroutineExecuter ce)
 {
     _coroutineExecuter = ce;
 }
 public CoroutineRunner(ICoroutineExecuter executer)
 {
     Executer = executer ?? throw new ArgumentNullException(nameof(executer));
 }