src/ai/api/ai_list_valuator.cpp
author truebrain
Fri, 22 Feb 2008 12:30:17 +0000
branchnoai
changeset 9737 ee408edf3851
parent 9661 32ce5530b9e3
child 9753 7209db94ad12
permissions -rw-r--r--
(svn r12216) [NoAI] -Codechange: made most functions 'static', which removes the need to create an instance to get, for example, engine information, and therefor heavily simplifying AI creation (Morloth)
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
}