예제 #1
0
 private static IMoojiBehaviourManager getBehaviourManager(BehaviourManagerType type)
 {
     if (_initCompleteBehaviourMapping.ContainsKey(type))
     {
         return(_initCompleteBehaviourMapping[type]);
     }
     else
     {
         return(null);
     }
 }
예제 #2
0
 public static void registerInitCompleteBehaviourManager(BehaviourManagerType type, IMoojiBehaviourManager instance)
 {
     _initCompleteBehaviourMapping[type] = instance;
 }