public UpdateObjectHandler(IWriteableLiveState state)
 {
     _state = state;
 }
Example #2
0
 public TimeHandler(IWriteableLiveState state)
 {
     _state = state;
 }
 public MissionEndHandler(IWriteableLiveState state)
 {
     _state = state;
 }
Example #4
0
 public InitHandler(IWriteableLiveState state)
 {
     _state = state;
 }
Example #5
0
 public AddObjectHandler(ILogger <AddObjectHandler> logger, IWriteableLiveState state)
 {
     _logger = logger;
     _state  = state;
 }
Example #6
0
 public AddAirbaseHandler(IWriteableLiveState liveState)
 {
     _liveState = liveState;
 }
Example #7
0
 public RemoveObjectHandler(IWriteableLiveState state)
 {
     _state = state;
 }