Example #1
0
 public override void ActionEvent(int pos, PokerAction act)
 {
 }
Example #2
0
 public HandHistoryPokerAction(HandHistoryPlayer player, PokerAction action)
 {
     _player = player;
     _action = action;
 }
Example #3
0
 public abstract void ActionEvent(int pos, PokerAction act);
Example #4
0
 public override void ActionEvent(int pos, PokerAction act)
 {
     _engine.ActionEvent(pos, act);
 }