ACR_ServerCommunicator.ACR_ServerCommunicator.HandleClientLeave C# (CSharp) 메소드

HandleClientLeave() 개인적인 메소드

This method handles ClientLeave events and cleans up local player state for the outgoing PC.
private HandleClientLeave ( uint PlayerObject ) : void
PlayerObject uint Supplies the departing PC object id. ///
리턴 void
        private void HandleClientLeave(uint PlayerObject)
        {
            if (TryGetPlayerState(PlayerObject) == null)
                return;

            DeletePlayerState(PlayerObject);
        }
ACR_ServerCommunicator