#pragma once

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