Exemplo n.º 1
0
        public ItemService(ClientStateService stateService, ClientCommandRunner runner)
        {
            _stateService = stateService;
            _runner       = runner;

            _allItemTypes = Enum.GetValues(typeof(ItemType)) as ItemType[];
        }
Exemplo n.º 2
0
 public LevelService(ClientCommandRunner runner)
 {
     _runner = runner;
 }
Exemplo n.º 3
0
 public UnitService(ClientStateService stateService, ClientCommandRunner runner)
 {
     _stateService = stateService;
     _runner       = runner;
 }