예제 #1
0
        protected virtual void OnHostTradePlayer(HostTradeEventArgs e)
        {
            EventHandler <HostTradeEventArgs> handler = HostTradePlayer;

            if (handler != null)
            {
                handler(this, e);
            }
        }
예제 #2
0
        protected void RaiseOnHostTradePlayer(InterceptedEventArgs e)
        {
            if (HostTradePlayer != null)
            {
                var args = new HostTradeEventArgs(e.Continuation, e.Step, e.Packet);
                OnHostTradePlayer(args);

                e.Cancel       = args.Cancel;
                e.WasContinued = args.WasContinued;
            }
        }
예제 #3
0
파일: HTriggers.cs 프로젝트: habb0/Sulakore
 protected virtual void OnHostTradePlayer(HostTradeEventArgs e)
 {
     EventHandler<HostTradeEventArgs> handler = HostTradePlayer;
     if (handler != null) handler(this, e);
 }
예제 #4
0
파일: HTriggers.cs 프로젝트: habb0/Sulakore
        protected void RaiseOnHostTradePlayer(InterceptedEventArgs e)
        {
            if (HostTradePlayer != null)
            {
                var args = new HostTradeEventArgs(e.Continuation, e.Step, e.Packet);
                OnHostTradePlayer(args);

                e.Cancel = args.Cancel;
                e.WasContinued = args.WasContinued;
            }
        }