(svn r23515) -Cleanup: Remove unused ScriptObject::GetNewTunnelEndtile() and relatives.

This commit is contained in:
frosch
2011-12-14 20:13:18 +00:00
parent 7f3227cd5c
commit 0a7b49e398
3 changed files with 0 additions and 24 deletions

View File

@@ -140,7 +140,6 @@ ScriptObject::ActiveInstance::~ActiveInstance()
/* Also store the results of various global variables */
SetNewVehicleID(_new_vehicle_id);
SetNewSignID(_new_sign_id);
SetNewTunnelEndtile(_build_tunnel_endtile);
SetNewGroupID(_new_group_id);
}
@@ -169,16 +168,6 @@ ScriptObject::ActiveInstance::~ActiveInstance()
return GetStorage()->new_sign_id;
}
/* static */ void ScriptObject::SetNewTunnelEndtile(TileIndex tile)
{
GetStorage()->new_tunnel_endtile = tile;
}
/* static */ TileIndex ScriptObject::GetNewTunnelEndtile()
{
return GetStorage()->new_tunnel_endtile;
}
/* static */ void ScriptObject::SetNewGroupID(GroupID group_id)
{
GetStorage()->new_group_id = group_id;

View File

@@ -155,11 +155,6 @@ protected:
*/
static SignID GetNewSignID();
/**
* Get the latest stored new_tunnel_endtile.
*/
static TileIndex GetNewTunnelEndtile();
/**
* Get the latest stored new_group_id.
*/
@@ -228,12 +223,6 @@ private:
*/
static void SetNewSignID(SignID sign_id);
/**
* Store a new_tunnel_endtile per company.
* @param tile The new TileIndex.
*/
static void SetNewTunnelEndtile(TileIndex tile);
/**
* Store a new_group_id per company.
* @param group_id The new GroupID.