// CBoard.h // // Author: Josh Jenkins // Inertia Productions 2003 // http://homepages.ihug.com.au/~grom #include #include // For OpenGL calls class CBoard { public: CBoard(); // Constructor ~CBoard(); // Destructor float width, height; // Actual playing field size float color[3]; // RGB color set Draw(); // Draw to opengl screen };