src/ai/api/ai_list.cpp
author rubidium
Wed, 26 Mar 2008 06:06:35 +0000
branchnoai
changeset 9820 8c116d4c6033
parent 9664 c5741021bf59
child 9833 89a64246458f
permissions -rw-r--r--
(svn r12423) [NoAI] -Change: bring a little more uniformness into the first few lines of the API related files (add missing /* $Id$ */ and such).
/* $Id$ */

/** @file ai_list.cpp A simple list for integral values */

#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);
}