Files @ r10712:3ee31720391b
Branch filter:

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

truebrain
(svn r15044) -Add [NoAI]: AIConfig::GetVersion(), to get the version of the current AI
/* $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);
}