Exemplo n.º 1
0
 public static void DelayedCall(this object anyObject, float delay, Action call)
 {
     DependencyManager.ResolveDependency <DelayedCallService>().DelayedCall(delay, call);
 }
Exemplo n.º 2
0
 private void Awake()
 {
     DontDestroyOnLoad(gameObject);
     DependencyManager.AddDependency <DelayedCallService>(this);
 }
Exemplo n.º 3
0
 public static ILog GetLog(this object anyObject)
 {
     return(DependencyManager.ResolveDependency <ILog>());
 }