Newer
Older
Import / applications / HighwayDash / ports / Game / Cube.h
@John Ryland John Ryland on 22 Dec 2020 144 bytes import NUC files
#ifndef CUBE_H
#define CUBE_H


#include <vector>


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


#endif // CUBE_H