Ejemplo n.º 1
0
        public AstrumClient()
        {
            ViewModel = new MainWindowViewModel();
            ViewModel.PropertyChanged += ViewModel_PropertyChanged;

            _questHandler       = new QuestHandler(this);
            _raidHandler        = new RaidHandler(this);
            _furyRaidHandler    = new FuryRaidHandler(this);
            _limitedRaidHandler = new LimitedRaidHandler(this);
            _breedingHandler    = new BreedingHandler(this);
            _guildBattleHandler = new GuildBattleHandler(this);
            _mypageHandler      = new MypageHandler(this);
            _giftHandler        = new GiftHandler(this);
            _itemHandler        = new ItemHandler(this);
            _gachaHandler       = new GachaHandler(this);
            _trainingHandler    = new TraningHandler(this);
            _specialAreaHandler = new SpecialAreaHandler(this);
            _talkHandler        = new TalkHandler(this);

            ViewModel.IsQuestEnable       = true;
            ViewModel.IsGuildBattleEnable = false;
            ViewModel.IsSpecialAreaEnable = false;

            ViewModel.MinStaminaStock = DEFAULT_STOCK;
            ViewModel.MinBpStock      = DEFAULT_STOCK;
            ViewModel.KeepStamina     = DEFAULT_KEEP_STAMINA;

            ViewModel.BaseDamage = DEFAULT_BASE_DAMAGE;
        }
Ejemplo n.º 2
0
 public override void Start()
 {
     handlerLocation = Enums.BirbLocation.NestParentsEgg;
     base.Start();
     bh = GameObject.FindGameObjectWithTag("BreedingHandler").GetComponent <BreedingHandler>();
 }
Ejemplo n.º 3
0
 void Start()
 {
     bh = GameObject.FindGameObjectWithTag("BreedingHandler").GetComponent <BreedingHandler>();
 }