src/ai/api/ai_list.cpp
author rubidium
Mon, 07 Apr 2008 18:41:49 +0000
branchnoai
changeset 10090 d6a6cac2fb25
parent 9833 89a64246458f
child 11058 3305a425f55b
permissions -rw-r--r--
(svn r12614) [NoAI] -Add: support for GetLastError in AISign. Patch by Morloth.
/* $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);
}