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

13 lines
190 B
C++

#ifndef __CONSTRAINT_H__
#define __CONSTRAINT_H__
class Constraint
{
public:
Constraint(void);
virtual ~Constraint(void);
virtual bool allows(class Map* m, int x, int y) = 0;
};
#endif