public BaseMythrasSelectForm()
        {
            InitializeComponent();
            sis = new SettingInformationStore();

            raceButtons       = new List <RadioButton>();
            professionButtons = new List <RadioButton>();
            cultureButtons    = new List <RadioButton>();

            initialiseRaces();
            initialiseProfessions();
            initialiseCultures();
        }
예제 #2
0
 public BaseMythrasSkillsForm(SettingInformationStore sis, string raceName,
                              string civilisationTypeName, string professionName, int strength, int constitution,
                              int size, int dexterity, int intelligence, int power, int charisma)
 {
     InitializeComponent();
     this.sis                  = sis;
     this.raceName             = raceName;
     this.civilisationTypeName = civilisationTypeName;
     this.professionName       = professionName;
     this.strength             = strength;
     strValueLabel.Text        = strength.ToString();
     this.constitution         = constitution;
     conValueLabel.Text        = constitution.ToString();
     this.size                 = size;
     sizValueLabel.Text        = size.ToString();
     this.dexterity            = dexterity;
     dexValueLabel.Text        = dexterity.ToString();
     this.intelligence         = intelligence;
     intValueLabel.Text        = intelligence.ToString();
     this.power                = power;
     powValueLabel.Text        = power.ToString();
     this.charisma             = charisma;
     chaValueLabel.Text        = charisma.ToString();
 }