nuclear-plant-sim/src/graphics/gl/vertex_array.hpp

12 lines
176 B
C++

#pragma once
#include "buffer_base.hpp"
namespace Graphics::GL {
struct VertexArray : BufferBase {
VertexArray();
VertexArray(VertexArray&& o);
~VertexArray();
};
};