Ejemplo n.º 1
0
        private void PrepararDados()
        {
            nextMonthCommand    = new Command(OnNextMonth);
            previewMonthCommand = new Command(OnPreviewMonth);

            scheduleManager        = new ScheduleManager();
            _specializationManager = new SpecializationManager();

            RefreshMonts();
            PrepairEspecializations();
        }
Ejemplo n.º 2
0
 public static void InitializeManager()
 {
     ActionMgr         = ActionManager.GetInstance();
     AddonMgr          = AddonManager.GetInstance();
     SkillMgr          = SkillManager.GetInstance();
     SpellMgr          = SpellManager.GetInstance();
     SpecializationMgr = SpecializationManager.GetInstance();
     DataMgr           = DataManager.GetInstance();
     SpawnMgr          = SpawnManager.GetInstance();
     GossipMgr         = GossipManager.GetInstance();
     ObjectMgr         = ObjectManager.GetInstance();
     WorldMgr          = WorldManager.GetInstance();
 }
Ejemplo n.º 3
0
        public static void Initialize()
        {
            // Load dbc files.
            CliDB.Initialize();

            ActionMgr         = ActionManager.GetInstance();
            AddonMgr          = AddonManager.GetInstance();
            SkillMgr          = SkillManager.GetInstance();
            SpellMgr          = SpellManager.GetInstance();
            SpecializationMgr = SpecializationManager.GetInstance();
            DataMgr           = DataManager.GetInstance();
            SpawnMgr          = SpawnManager.GetInstance();
            GossipMgr         = GossipManager.GetInstance();
            ObjectMgr         = ObjectManager.GetInstance();
            WorldMgr          = WorldManager.GetInstance();
        }
Ejemplo n.º 4
0
 public SelectSpecialization()
 {
     _specializationManager = new SpecializationManager();
 }
Ejemplo n.º 5
0
 public SelectSpecialist(Especializacao especializacao)
 {
     _specializationManager = new SpecializationManager();
     GetSpecialistsBySpecialization(especializacao);
 }