Esempio n. 1
0
            public BotRow AddBotRow(string Name, string FunName, string Class, string Weapon, string Team)
            {
                BotRow rowBotRow = ((BotRow)(this.NewRow()));

                rowBotRow.ItemArray = new object[] {
                    Name,
                    FunName,
                    Class,
                    Weapon,
                    Team
                };
                this.Rows.Add(rowBotRow);
                return(rowBotRow);
            }
Esempio n. 2
0
 public BotRowChangeEvent(BotRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemoveBotRow(BotRow row) {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddBotRow(BotRow row) {
     this.Rows.Add(row);
 }
Esempio n. 5
0
 public BotRowChangeEvent(BotRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 6
0
 public void RemoveBotRow(BotRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 7
0
 public void AddBotRow(BotRow row)
 {
     this.Rows.Add(row);
 }