HandResult() public method

public HandResult ( Player player, int result ) : void
player Player
result int
return void
コード例 #1
0
        private void OnHandResult(BinaryReader packet)
        {
            int res = packet.ReadByte();

            Game.HandResult(this, res);
        }
コード例 #2
0
ファイル: Player.cs プロジェクト: Ygocore/ygosharp_v0.1.1
        private void OnHandResult(GameClientPacket packet)
        {
            int res = packet.ReadByte();

            Game.HandResult(this, res);
        }