mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 17:43:38 +00:00
11 lines
294 B
C++
11 lines
294 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; }
|
|
}; |