46b2ed80ae
Another nuke! This time, trying to do a client <-> server thing. Also a bit of messing with Lua.
20 lines
213 B
C++
20 lines
213 B
C++
#pragma once
|
|
|
|
#include <GL/glew.h>
|
|
|
|
class Object
|
|
{
|
|
protected:
|
|
GLsizei mGLsizei;
|
|
GLuint VBO, EBO;
|
|
|
|
public:
|
|
GLuint VAO;
|
|
|
|
Object (void) : mGLsizei (0)
|
|
{
|
|
}
|
|
Object (const GLsizei);
|
|
~Object (void);
|
|
};
|