1
0
forked from 0ad/0ad
0ad/source/tools/rmgen/objectgroupplacer.h

16 lines
287 B
C
Raw Normal View History

#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);
};
2005-07-30 22:57:18 +02:00
#endif