46b2ed80ae
Another nuke! This time, trying to do a client <-> server thing. Also a bit of messing with Lua.
13 lines
122 B
C++
13 lines
122 B
C++
#include "object.h"
|
|
|
|
class Quad : Object
|
|
{
|
|
public:
|
|
Quad (void)
|
|
{
|
|
}
|
|
Quad (const GLsizei);
|
|
|
|
void Draw (void);
|
|
};
|