Пример #1
0
 public PotWonEventArgs(PlayerInfo p, int id, int amntWon, PokerHandEnum hand, string[] cards)
     : base(p)
 {
     m_Id        = id;
     m_AmountWon = amntWon;
     m_Hand      = hand;
     m_Cards     = cards;
 }
Пример #2
0
 public PotWonEventArgs(PlayerInfo p, int id, int amntWon, PokerHandEnum hand, string[] cards)
     : base(p)
 {
     m_Id = id;
     m_AmountWon = amntWon;
     m_Hand = hand;
     m_Cards = cards;
 }
Пример #3
0
 public void RaisePlayerWonPot(PlayerInfo p, int id, int amntWon, PokerHandEnum hand, string[] cards)
 {
     PlayerWonPot(m_Game, new PotWonEventArgs(p, id, amntWon, hand, cards));
 }
Пример #4
0
 public void RaisePlayerWonPot(PlayerInfo p, int id, int amntWon, PokerHandEnum hand, string[] cards)
 {
     PlayerWonPot(m_Game, new PotWonEventArgs(p, id, amntWon, hand, cards));
 }