src/ai/api/ai_list_valuator.cpp
author truelight
Sun, 19 Aug 2007 13:31:04 +0000
branchnoai
changeset 9698 1d50fe99b7e9
parent 9661 32ce5530b9e3
child 9753 7209db94ad12
permissions -rw-r--r--
(svn r10939) [NoAI] -Add: added AITileList valuator Water
[NoAI] -Add: added AITile::IsWater
9661
32ce5530b9e3 (svn r10571) [NoAI] -Fix r10569: about time I forgot to add some files
truelight
parents:
diff changeset
     1
#include "ai_list_valuator.hpp"
32ce5530b9e3 (svn r10571) [NoAI] -Fix r10569: about time I forgot to add some files
truelight
parents:
diff changeset
     2
#include "ai_base.hpp"
32ce5530b9e3 (svn r10571) [NoAI] -Fix r10569: about time I forgot to add some files
truelight
parents:
diff changeset
     3
32ce5530b9e3 (svn r10571) [NoAI] -Fix r10569: about time I forgot to add some files
truelight
parents:
diff changeset
     4
int32 AIListRandomize::Valuate(int32 town) const
32ce5530b9e3 (svn r10571) [NoAI] -Fix r10569: about time I forgot to add some files
truelight
parents:
diff changeset
     5
{
32ce5530b9e3 (svn r10571) [NoAI] -Fix r10569: about time I forgot to add some files
truelight
parents:
diff changeset
     6
	return AIBase::Rand();
32ce5530b9e3 (svn r10571) [NoAI] -Fix r10569: about time I forgot to add some files
truelight
parents:
diff changeset
     7
}