HandResult() public méthode

public HandResult ( Player player, int result ) : void
player Player
result int
Résultat void
Exemple #1
0
        private void OnHandResult(BinaryReader packet)
        {
            int res = packet.ReadByte();

            Game.HandResult(this, res);
        }
Exemple #2
0
        private void OnHandResult(GameClientPacket packet)
        {
            int res = packet.ReadByte();

            Game.HandResult(this, res);
        }