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

16 lines
290 B
C
Raw Normal View History

2005-07-30 22:57:18 +02:00
#ifndef __OBJECTGROUPPLACER_H__
#define __OBJECTGROUPPLACER_H__
#include "constraint.h"
#include "object.h"
class ObjectGroupPlacer
{
public:
virtual bool place(class Map* m, Constraint* constr) = 0;
2005-07-30 22:57:18 +02:00
ObjectGroupPlacer(void);
virtual ~ObjectGroupPlacer(void);
};
#endif