예제 #1
0
        /// <summary>
        /// Process a player's logout.
        /// </summary>
        /// <param name="player">The player doing the action.</param>
        /// <param name="world">A reference to the gameworld.</param>
        private void ProcessLogout(Player player, GameWorld world)
        {
#if DEBUG
            Log.WriteDebug("In ProcessLogout()");
#endif
            world.HandleLogout(player);
        }
예제 #2
0
 /// <summary>
 /// Process a player's logout.
 /// </summary>
 /// <param name="player">The player doing the action.</param>
 /// <param name="world">A reference to the gameworld.</param>
 private void ProcessLogout(Player player, GameWorld world)
 {
     #if DEBUG
     Log.WriteDebug("In ProcessLogout()");
     #endif
     world.HandleLogout(player);
 }