mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 13:53:57 -07:00
14 lines
159 B
C++
14 lines
159 B
C++
#include "StdAfx.h"
|
|
#include ".\area.h"
|
|
|
|
Area::Area(void)
|
|
{
|
|
}
|
|
|
|
Area::Area(const std::vector<Point>& points) {
|
|
this->points = points;
|
|
}
|
|
|
|
Area::~Area(void)
|
|
{
|
|
}
|