示例#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);
        }
示例#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);
        }