Files @ r12267:8459f2c78ac8
Branch filter:

Location: cpp/openttd-patchpack/source/src/ai/api/ai_grouplist.cpp

translators
(svn r16692) -Update from WebTranslator v3.0:
ukrainian - 3 changes by Madvin
/* $Id$ */

/** @file ai_grouplist.cpp Implementation of AIGroupList and friends. */

#include "ai_grouplist.hpp"
#include "../../company_func.h"
#include "../../group.h"

AIGroupList::AIGroupList()
{
	Group *g;
	FOR_ALL_GROUPS(g) {
		if (g->owner == _current_company) this->AddItem(g->index);
	}
}