Esempio n. 1
0
File: AVTower.cs Progetto: NVN/WCell
        protected AlteracTower(AlteracValley instance, GOEntry flagstand)
        {
            Instance = instance;
            FlagStand = flagstand;
            if (WarmasterEntry != null) WarmasterEntry.Activated += (warmaster) =>
                                                                        {
                                                                            Warmaster = warmaster;
                                                                        };

        }
Esempio n. 2
0
        protected AlteracTower(AlteracValley instance, GOEntry flagstand)
        {
            Instance  = instance;
            FlagStand = flagstand;
            var entry = WarmasterEntry;

            if (entry != null)
            {
                entry.Activated += (warmaster) =>
                {
                    Warmaster = warmaster;
                };
            }
        }
Esempio n. 3
0
        protected AVFaction(AlteracValley instance, GOEntryId flagEntry)
        {
            Instance = instance;

        }
Esempio n. 4
0
 protected AVFaction(AlteracValley instance, GOEntryId flagEntry)
 {
     Instance = instance;
 }