mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 13:53:57 -07:00
13 lines
155 B
C++
13 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);
|
|
};
|