mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-08 19:47:14 +00:00
3d26549032
This was SVN commit r3802.
16 lines
287 B
C++
16 lines
287 B
C++
#ifndef __OBJECTGROUPPLACER_H__
|
|
#define __OBJECTGROUPPLACER_H__
|
|
|
|
#include "constraint.h"
|
|
#include "object.h"
|
|
|
|
class ObjectGroupPlacer
|
|
{
|
|
public:
|
|
virtual bool place(class Map* m, int player, Constraint* constr) = 0;
|
|
|
|
ObjectGroupPlacer(void);
|
|
virtual ~ObjectGroupPlacer(void);
|
|
};
|
|
|
|
#endif |