コード例 #1
0
 public static FourPlayerLogic CreatePlayingNew(LevelLogicCustomSettings levelSettings, ILevelManager level, FourPlayerLogicType myType)
 {
     return(new FourPlayerLogic(level, myType));
 }
コード例 #2
0
 public static FourPlayerLogic CreateEditingLoading(ILevelManager level, FourPlayerLogicType myType)
 {
     return(new FourPlayerLogic(level, myType));
 }
コード例 #3
0
 public FourPlayerLogic(ILevelManager level, FourPlayerLogicType myType)
     : base(level)
 {
     updateResourcesTimeout = new Timeout(1);
     this.myType            = myType;
 }