handmade/include/object.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

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);
};