handmade/include/cube.h
Bubblegumdrop 46b2ed80ae Initial commit.
Another nuke! This time, trying to do a client <-> server thing.

Also a bit of messing with Lua.
2022-01-02 19:28:16 -05:00

13 lines
122 B
C++

#include "object.h"
class Cube : Object
{
public:
Cube (void)
{
}
Cube (const GLsizei);
void Draw (void);
};