mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 09:23:37 +00:00
10 lines
314 B
C++
10 lines
314 B
C++
#pragma once
|
|
#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; }
|
|
}; |