mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-11 19:53:52 +00:00
12 lines
283 B
C
12 lines
283 B
C
|
|
#pragma once
|
||
|
|
#include "Material.h"
|
||
|
|
|
||
|
|
class PortalMaterial : public Material
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
PortalMaterial(MaterialColor *color) : Material(color) { }
|
||
|
|
|
||
|
|
virtual bool isSolid() { return false; }
|
||
|
|
virtual bool blocksLight() { return false; }
|
||
|
|
virtual bool blocksMotion() { return false; }
|
||
|
|
};
|