コード例 #1
0
ファイル: WorldEvent.cs プロジェクト: RevolutionSmythe/c-raft
 private void OnWorldLeft(WorldLeftEventArgs e)
 {
     foreach (EventListener bl in Plugins)
     {
         WorldListener ll = (WorldListener)bl.Listener;
         if (bl.Event == Event.WORLD_LEAVE)
             ll.OnWorldLeft(e);
     }
 }
コード例 #2
0
ファイル: WorldListener.cs プロジェクト: dekema2/c-raft
 public virtual void OnWorldLeft(WorldLeftEventArgs e)
 {
 }