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