mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-27 00:43:42 +00:00
13 lines
338 B
C++
13 lines
338 B
C++
#pragma once
|
|
#include "Material.h"
|
|
|
|
class DecorationMaterial : public Material {
|
|
public:
|
|
DecorationMaterial(MaterialColor* color) : Material(color) {
|
|
makeDestroyedByHand();
|
|
}
|
|
|
|
virtual bool isSolid() { return false; }
|
|
virtual bool blocksLight() { return false; }
|
|
virtual bool blocksMotion() { return false; }
|
|
}; |