public EncounterSetViewModel(EncounterSet encounterSet)
 {
     _encounterSet = encounterSet;
 }
 public EncounterSetViewModel(EncounterSet encounterSet)
 {
     _encounterSet = encounterSet;
 }
Ejemplo n.º 3
0
        /*
         * protected void DeluxeExpansion(string title, string product, int number)
         * {
         *  Title = title;
         *  ProductName = product;
         *  GroupName = product;
         *  Number = number;
         * }
         *
         * protected void SagaExpansion(string title, string product, int number)
         * {
         *  DeluxeExpansion(title, product, number);
         * }
         *
         * protected void AdventurePack(string title, string cycle, int number)
         * {
         *  Title = title;
         *  ProductName = title;
         *  GroupName = cycle;
         *  Number = number;
         * }
         */

        protected void AddEncounterSet(EncounterSet set)
        {
            encounterSets[set.Name] = set;
        }
Ejemplo n.º 4
0
 private static void Add(EncounterSet set)
 {
     all.Add(set);
 }