#ifndef CUBE_H
#define CUBE_H


#include <vector>


class Cube
{
public:
  Cube();
  std::vector<float> m_baseCubeData;
};


#endif // CUBE_H


