mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-08 10:06:22 +00:00
56343ae9c8
This was SVN commit r2338.
13 lines
202 B
C++
13 lines
202 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
|