// BlockyFroggy // Copyright © 2017 John Ryland. // All rights reserved. #pragma once #ifndef CUBE_H #define CUBE_H #include <vector> class Cube { public: Cube(); std::vector<float> m_baseCubeData; }; #endif // CUBE_H