Exemplo n.º 1
0
        protected virtual void OnKnuBotTradeEvent(KnuBotTradeEventArgs e)
        {
            EventHandler <KnuBotTradeEventArgs> handler = this.CallKnuBotTrade;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 2
0
 protected virtual void OnKnuBotTradeEvent(KnuBotTradeEventArgs e)
 {
     EventHandler<KnuBotTradeEventArgs> handler = this.CallKnuBotTrade;
     if (handler != null)
     {
         handler(this, e);
     }
 }
Exemplo n.º 3
0
 public virtual void OnKnuBotTrade(object sender, KnuBotTradeEventArgs e)
 {
     this.tradedItems.Add(e.Item);
 }
Exemplo n.º 4
0
 public virtual void OnKnuBotTrade(object sender, KnuBotTradeEventArgs e)
 {
     this.tradedItems.Add(e.Item);
 }