minetest/src/materials.cpp

21 lines
432 B
C++
Raw Normal View History

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