Example #1
0
 private void OnWorldLeft(WorldLeftEventArgs e)
 {
     foreach (EventListener bl in Plugins)
     {
         WorldListener ll = (WorldListener)bl.Listener;
         if (bl.Event == Event.WORLD_LEAVE)
             ll.OnWorldLeft(e);
     }
 }
Example #2
0
 public virtual void OnWorldLeft(WorldLeftEventArgs e)
 {
 }