13 lines
122 B
C
13 lines
122 B
C
|
#include "object.h"
|
||
|
|
||
|
class Cube : Object
|
||
|
{
|
||
|
public:
|
||
|
Cube (void)
|
||
|
{
|
||
|
}
|
||
|
Cube (const GLsizei);
|
||
|
|
||
|
void Draw (void);
|
||
|
};
|