Esempio n. 1
0
        public static void onUpdate()
        {
            int i = 0;

            thisPtr.partyBox.Controls.Clear();

            foreach (Character c in theWorld.heroParty)
            {
                Label cname = new Label();
                cname.Text     = c.Name + "\t HP: " + c.HP + "/" + c.maxHP;
                cname.Location = new System.Drawing.Point(0, 22 * i);
                thisPtr.partyBox.Controls.Add(cname);
                i++;
            }
            thisPtr.Update();
        }