mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-07 23:45:47 -07:00
8 lines
127 B
C++
8 lines
127 B
C++
|
|
#include "stdafx.h"
|
||
|
|
#include "simpleconstraints.h"
|
||
|
|
|
||
|
|
bool NullConstraint::allows(Map* m, int x, int y)
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|