mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 09:48:14 +05: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; }
|
|
}; |