protected virtual void OnPlayerKickHost(PlayerKickHostEventArgs e) { EventHandler <PlayerKickHostEventArgs> handler = PlayerKickHost; if (handler != null) { handler(this, e); } }
protected void RaiseOnPlayerKickHost(InterceptedEventArgs e) { if (PlayerKickHost != null) { var args = new PlayerKickHostEventArgs(e.Continuation, e.Step, e.Packet); OnPlayerKickHost(args); e.Cancel = args.Cancel; e.WasContinued = args.WasContinued; } }
protected virtual void OnPlayerKickHost(PlayerKickHostEventArgs e) { EventHandler<PlayerKickHostEventArgs> handler = PlayerKickHost; if (handler != null) handler(this, e); }