Example #1
0
 public CameraHeightKeyHandler
 (
     IGameValueService gameValueService,
     IActionLoopServiceFactory actionLoopServiceFactory,
     CameraHeightKeys cameraHeightKeys,
     float cameraMovementOffset
 )
 {
     _gameValueService    = gameValueService;
     _actionLoopService   = actionLoopServiceFactory.CreateActionLoopService();
     _cameraHeightKeys    = cameraHeightKeys;
     CameraMovementOffset = cameraMovementOffset;
 }
 public KeyAndMouseEventHandlerFactory(IActionLoopServiceFactory actionLoopServiceFactory)
 {
     _actionLoopServiceFactory = actionLoopServiceFactory;
 }