Esempio n. 1
0
        public int ShowSex = 0;      // show player's sex

        public PaifuGenerator(Mahjong.Replay Replay, int Round)
        {
            R = Replay;
            Rnd = R.Rounds[Round];

            Red = !Replay.LobbyType.HasFlag(LobbyType.NOAKA);

            // Replay only one game, if it need
            if (Rnd.Hands[0].Count == 0) Rnd.ReplayGame();

            for (int i = 0; i < R.PlayerCount; i++) DangerTiles[i] = null;
        }