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