Exemplo n.º 1
0
        public void reportGameOver(GameOverState winState, string[] winOrder)
        {
            GameOverScore score = new GameOverScore()
            {
                winOrder = winOrder, winState = winState
            };

            Msf.Connection.SendMessage((short)CustomMasterServerMSG.gameOverResult, new GameOverMsg()
            {
                fullGameHistory = historyController.getFullLog(), score = score, roomID = broadcastID
            });
        }