Beispiel #1
0
        void writeCharacterToTextBox(CharacterClass c, TextBox txtBox)
        {
            txtBox.Clear();
            string s = c.Name + "\r\n" +
                       "Body          : " + c.Body + "    Strength        : " + c.Strength + "\r\n" +
                       "Agility         : " + c.Agility + "    Intelligence : " + c.Intelligence + "\r\n" +
                       "Willpower : " + c.Willpower + "    Charisma     : " + c.Charisma + "\r\n" +
                       "Intuition      : " + c.Intuition + "    Logic             : " + c.Logic + "\r\n";

            s += SkillClass.getAllSkills(c);

            txtBox.Text = s;
        }