Files @ r11368:058349c3a02c
Branch filter:

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

rubidium
(svn r15723) -Codechange: use a constructor for WindowDescs as that makes expanding them much easier (Alberth)
/* $Id$ */

/** @file ai_accounting.cpp Implementation of AIAccounting. */

#include "ai_accounting.hpp"

Money AIAccounting::GetCosts()
{
	return this->GetDoCommandCosts();
}

void AIAccounting::ResetCosts()
{
	this->SetDoCommandCosts(0);
}

AIAccounting::AIAccounting()
{
	this->last_costs = this->GetDoCommandCosts();
	this->SetDoCommandCosts(0);
}

AIAccounting::~AIAccounting()
{
	this->SetDoCommandCosts(this->last_costs);
}