src/ai/api/ai_list_valuator.cpp
author rubidium
Sun, 03 Feb 2008 20:17:54 +0000
branchnoai
changeset 9724 b39bc69bb2f2
parent 9661 32ce5530b9e3
child 9753 7209db94ad12
permissions -rw-r--r--
(svn r12051) [NoAI] -Sync: with trunk (r11795:12050).
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
}