예제 #1
0
 public EventActionScheduler(IGlobalStateManager globalStateManager)
 {
     _globalStateManager = globalStateManager;
 }
예제 #2
0
 public EventActionScheduler()
 {
     _globalStateManager = new GlobalStateManager();
 }
예제 #3
0
 public GlobalStateUpdateTask(IGlobalStateManager globalStateManager, ProcessorTopology topology, ProcessorContext context)
 {
     this.globalStateManager = globalStateManager;
     this.topology           = topology;
     this.context            = context;
 }
예제 #4
0
 public ArmyMoveCommand(IGlobalStateManager globalState)
 {
     _globalState = globalState;
 }
예제 #5
0
 public TaskLoopScheduler(IGlobalStateManager globalStateManager)
 {
     _globalStateManager = globalStateManager;
 }
예제 #6
0
 public TaskLoopScheduler()
 {
     _globalStateManager = new GlobalStateManager();
 }