mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 13:53:57 -07:00
12 lines
190 B
C++
12 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
|