protected virtual void OnFurnitureDrop(FurnitureDropEventArgs e) { EventHandler <FurnitureDropEventArgs> handler = FurnitureDrop; if (handler != null) { handler(this, e); } }
protected void RaiseOnFurnitureDrop(InterceptedEventArgs e) { if (FurnitureDrop != null) { var args = new FurnitureDropEventArgs(e.Continuation, e.Step, e.Packet); OnFurnitureDrop(args); e.Cancel = args.Cancel; e.WasContinued = args.WasContinued; } }
protected virtual void OnFurnitureDrop(FurnitureDropEventArgs e) { EventHandler<FurnitureDropEventArgs> handler = FurnitureDrop; if (handler != null) handler(this, e); }