public Table(IntPtr hWnd) { this.hWnd = hWnd; stackFont = new StackFont(); config = new TableConfig(); seats = new List <Seat>(); for (int i = 0; i < 9; ++i) { seats.Add(new Seat(i, config, stackFont)); } capture = new TableCapture(hWnd); }
public Table ( IntPtr hWnd ) { this.hWnd = hWnd; stackFont = new StackFont(); config = new TableConfig(); seats = new List<Seat>(); for (int i = 0; i < 9; ++i ) { seats.Add( new Seat( i, config, stackFont ) ); } capture = new TableCapture(hWnd); }
public Seat(int index, TableConfig config, StackFont stackFont) { this.index = index; this.config = config; this.stackFont = stackFont; }
public Seat( int index, TableConfig config, StackFont stackFont ) { this.index = index; this.config = config; this.stackFont = stackFont; }