Skip to content
Snippets Groups Projects
Plane.h 155 B
#ifndef MAKE_PLANE_H_
#define MAKE_PLANE_H_

class Plane
{
private:
    /* data */
public:
    Plane(/* args */);
    ~Plane();
};

#endif // MAKE_PLANE_H_