Esempio n. 1
0
        public GameWorldService(GameInstanceService gameInstanceService)
        {
            _gameInstanceService = gameInstanceService;

            world = _gameInstanceService.GameInstance.GameWorld;
        }
Esempio n. 2
0
 public UnitMoveService(GameInstanceService gameInstanceService, GameWorldService gameWorldService)
 {
     _gameInstanceService = gameInstanceService;
     _gameWorldService    = gameWorldService;
 }
Esempio n. 3
0
 public FieldOfViewService(GameInstanceService gameInstanceService, GameWorldService gameWorldService, UnitMoveService unitMoveService)
 {
     _gameInstanceService = gameInstanceService;
     _gameWorldService    = gameWorldService;
     _unitMoveService     = unitMoveService;
 }
 public TurnPlanningService(GameInstanceService gameInstanceService)
 {
     _gameInstanceService = gameInstanceService;
 }