mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 14:53:56 -07:00
16 lines
No EOL
264 B
C++
16 lines
No EOL
264 B
C++
#ifndef __AREAPLACER_H__
|
|
#define __AREAPLACER_H__
|
|
|
|
#include "point.h"
|
|
#include "constraint.h"
|
|
|
|
class AreaPlacer
|
|
{
|
|
public:
|
|
virtual bool place(class Map* m, Constraint* constr, std::vector<Point>& ret) = 0;
|
|
|
|
AreaPlacer(void);
|
|
virtual ~AreaPlacer(void);
|
|
};
|
|
|
|
#endif |