mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-27 06:02:11 +00:00
14 lines
166 B
C++
14 lines
166 B
C++
#pragma once
|
|
|
|
class IndexBuffer
|
|
{
|
|
public:
|
|
IndexBuffer(int sizeInBytes);
|
|
~IndexBuffer();
|
|
|
|
GLuint GetBuffer();
|
|
|
|
private:
|
|
int64_t mSize = 0;
|
|
GLuint mBuffer = 0;
|
|
};
|