mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 23:03:56 -07:00
16 lines
No EOL
287 B
C++
16 lines
No EOL
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 |