blob: 8a8bebf8342f7e6c5c01b1c4133254302e710eb6 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "Material.h"
// 4J added, Java version just does a local alteration when instantiating the Material for webs to get the same thing
class WebMaterial : public Material
{
public:
WebMaterial(MaterialColor *color) : Material(color) {}
virtual bool blocksMotion() { return false; }
};
|