Files
MinecraftConsoles/Minecraft.World/WebMaterial.h

9 lines
292 B
C
Raw Normal View History

2026-03-01 12:16:08 +08:00
#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; }
};