Ejemplo n.º 1
0
 TwoPlayerLogic(ILevelManager level, TwoPlayerLogicType myType, ResourceCreationWindow initSettings = null)
     : base(level)
 {
     this.updateResourcesTimeout = new Timeout(1);
     this.myType       = myType;
     this.initSettings = initSettings;
 }
Ejemplo n.º 2
0
 public static TwoPlayerLogic CreateEditingLoading(ILevelManager level, TwoPlayerLogicType myType)
 {
     return(new TwoPlayerLogic(level, myType));
 }
Ejemplo n.º 3
0
 public static TwoPlayerLogic CreatePlayingNew(ResourceCreationWindow levelSettings, ILevelManager level, TwoPlayerLogicType myType)
 {
     return(new TwoPlayerLogic(level, myType, levelSettings));
 }