src/ai/api/ai_list.cpp
author truebrain
Mon, 31 Mar 2008 09:25:03 +0000
branchnoai
changeset 9841 f931a10242c9
parent 9833 89a64246458f
child 11058 3305a425f55b
permissions -rw-r--r--
(svn r12507) [NoAI] -Fix: enable Doxyfile warning about missing params and fix 3 missing params in AIObject
/* $Id$ */

/** @file ai_list.cpp Implementation of AIList. */

#include "ai_list.hpp"

void AIList::AddItem(int32 item, int32 value)
{
	AIAbstractList::AddItem(item);
	this->SetValue(item, value);
}

void AIList::ChangeItem(int32 item, int32 value)
{
	this->SetValue(item, value);
}

void AIList::RemoveItem(int32 item)
{
	AIAbstractList::RemoveItem(item);
}