mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
d701987fb4
- CopyTexture bug fixes
13 lines
131 B
C++
13 lines
131 B
C++
#pragma once
|
|
|
|
class IndexBuffer
|
|
{
|
|
public:
|
|
IndexBuffer();
|
|
~IndexBuffer();
|
|
|
|
GLuint GetBuffer();
|
|
|
|
private:
|
|
GLuint mBuffer = 0;
|
|
};
|