18 lines
198 B
C++
18 lines
198 B
C++
#pragma once
|
|
|
|
class VertexArray{
|
|
private:
|
|
unsigned int id;
|
|
|
|
|
|
public:
|
|
void Create();
|
|
void Bind();
|
|
void Unbind();
|
|
|
|
void Delete();
|
|
|
|
void AttachAttribute(unsigned int index, int size, int stride);
|
|
|
|
|
|
}; |