forked from mirrors/0ad
34f599f3d4
This was SVN commit r2340.
15 lines
173 B
C++
15 lines
173 B
C++
#include "StdAfx.h"
|
|
#include ".\area.h"
|
|
|
|
Area::Area(void)
|
|
{
|
|
}
|
|
|
|
Area::Area(const std::vector<Point>& points) {
|
|
this->points = points;
|
|
}
|
|
|
|
Area::~Area(void)
|
|
{
|
|
}
|