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

13 lines
228 B
C++

#ifndef __SIMPLECONSTRAINTS_H__
#define __SIMPLECONSTRAINTS_H__
#include "constraint.h"
#include "map.h"
class NullConstraint : public Constraint {
public:
virtual bool allows(Map* m, int x, int y);
};
#endif