minetest/src/materials.cpp

21 lines
432 B
C++
Raw Permalink Normal View History

2010-12-24 15:54:39 -08:00
#include "materials.h"
#include "mapnode.h"
2010-12-24 15:54:39 -08:00
// NOTE: DEPRECATED
2010-12-24 15:54:39 -08:00
2011-07-23 06:55:26 -07:00
DiggingPropertiesList * getDiggingPropertiesList(u16 content)
2010-12-24 15:54:39 -08:00
{
return &content_features(content).digging_properties;
2010-12-24 15:54:39 -08:00
}
2011-07-23 06:55:26 -07:00
DiggingProperties getDiggingProperties(u16 content, const std::string &tool)
2010-12-24 15:54:39 -08:00
{
DiggingPropertiesList *mprop = getDiggingPropertiesList(content);
2010-12-24 15:54:39 -08:00
if(mprop == NULL)
// Not diggable
return DiggingProperties();
return mprop->get(tool);
2010-12-24 15:54:39 -08:00
}