#pragma once #include #include class LatticeCellBuffer { private: std::vector _data; GLuint _array; GLuint _buffer; public: LatticeCellBuffer(GLuint nX, GLuint nY); ~LatticeCellBuffer(); GLuint getBuffer() const; };