src/ai/core/map/conversion.cpp
author truelight
Wed, 14 Mar 2007 20:25:43 +0000
branchnoai
changeset 9388 032008c3f6e3
parent 9379 6e89b780c2c9
permissions -rw-r--r--
(svn r9180) [NoAI] -Fix: copy/pasting can be nasty: wrong @file headers
/* $Id$ */

/** @file conversion.cpp handles the conversion-related of the AIMap class */

#include "../ai_map.hpp"

uint32 AIMap::GetTileX(TileIndex t)
{
	return ::TileX(t);
}

uint32 AIMap::GetTileY(TileIndex t)
{
	return ::TileY(t);
}