mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 01:22:18 +00:00
16 lines
170 B
C++
16 lines
170 B
C++
#pragma once
|
|
|
|
class RenderDevice;
|
|
|
|
class IndexBuffer
|
|
{
|
|
public:
|
|
~IndexBuffer();
|
|
|
|
GLuint GetBuffer();
|
|
|
|
RenderDevice* Device = nullptr;
|
|
|
|
private:
|
|
GLuint mBuffer = 0;
|
|
};
|