2011-m2s3-city-builder/rules/quadrect.hh
2011-12-11 12:34:51 +01:00

16 lines
322 B
C++

#ifndef _RULES_QUAD_RECT_HH_
#define _RULES_QUAD_RECT_HH_
#include "all_includes.hh"
// Quad est un quadrilatère
class QuadRect : public Quadrilatere {
private:
static const int hrw = 250; // half road width : 2,50m.
public:
QuadRect(Vertex ne, Vertex se, Vertex sw, Vertex nw);
virtual bool subdivide();
};
#endif