Exemple #1
0
        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);
        }
Exemple #2
0
        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);
        }
Exemple #3
0
 public Seat(int index, TableConfig config, StackFont stackFont)
 {
     this.index     = index;
     this.config    = config;
     this.stackFont = stackFont;
 }
Exemple #4
0
 public Seat( int index, TableConfig config, StackFont stackFont )
 {
     this.index = index;
     this.config = config;
     this.stackFont = stackFont;
 }