Ejemplo n.º 1
0
 public void Start(BaseGameTable table)
 {
     m_gtTable = table;
     m_bIsRunning = true;
     m_dicStorage.Clear();
 }
Ejemplo n.º 2
0
 public MoveDealerButtonRoutine(BaseGameTable table)
     : base(table, TableState.MovingDealerButton)
 {
 }
Ejemplo n.º 3
0
            public BaseGameRoutine(BaseGameTable table, TableState newState)
            {
                Table = table;

                RoutineState = newState;
            }
Ejemplo n.º 4
0
 public ShuffleDeckRoutine(BaseGameTable table)
     : base(table, TableState.ShufflingDeck)
 {
 }
Ejemplo n.º 5
0
 public FilterPlayersRoutine(BaseGameTable table)
     : base(table, TableState.FilteringIneligiblePlayers)
 {
 }