File diff r15939:b46581ea4a91 → r15940:064272152529
src/object_cmd.cpp
Show inline comments
 
@@ -30,6 +30,7 @@
 
#include "core/pool_func.hpp"
 
#include "object_map.h"
 
#include "object_base.h"
 
#include "newgrf_object.h"
 
#include "date_func.h"
 

	
 
#include "table/strings.h"
 
@@ -49,17 +50,6 @@ void InitializeObjects()
 
	_object_pool.CleanPool();
 
}
 

	
 
/* static */ const ObjectSpec *ObjectSpec::Get(ObjectType index)
 
{
 
	assert(index < OBJECT_MAX);
 
	return &_original_objects[index];
 
}
 

	
 
/* static */ const ObjectSpec *ObjectSpec::GetByTile(TileIndex tile)
 
{
 
	return ObjectSpec::Get(GetObjectType(tile));
 
}
 

	
 
void BuildObject(ObjectType type, TileIndex tile, CompanyID owner, Town *town)
 
{
 
	const ObjectSpec *spec = ObjectSpec::Get(type);