invertika_game.Game.AccountConnection.playerReconnectAccount C# (CSharp) Method

playerReconnectAccount() private method

private playerReconnectAccount ( int id, string magic_token ) : void
id int
magic_token string
return void
        void playerReconnectAccount(int id, string magic_token)
        {
            Logger.Write(LogLevel.Debug, "Send GAMSG_PLAYER_RECONNECT.");
            MessageOut msg=new MessageOut(Protocol.GAMSG_PLAYER_RECONNECT);
            msg.writeInt32(id);
            msg.writeString(magic_token);
            send(msg);
        }