mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-27 06:02:11 +00:00
12 lines
169 B
C++
12 lines
169 B
C++
#pragma once
|
|
|
|
class IndexBuffer
|
|
{
|
|
public:
|
|
IndexBuffer(int sizeInBytes);
|
|
|
|
void SetBufferData(const void* data, int64_t size);
|
|
|
|
private:
|
|
std::vector<uint8_t> mData;
|
|
};
|