1
1
forked from 0ad/0ad
0ad/source/tools/rmgen/area.h

14 lines
155 B
C++

#pragma once
#include "point.h"
class Area
{
public:
std::vector<Point> points;
Area(void);
Area(const std::vector<Point>& points);
~Area(void);
};