forked from Kolyah35/minecraft-pe-0.6.1
28 lines
544 B
C++
Executable File
28 lines
544 B
C++
Executable File
#ifndef NET_MINECRAFT_WORLD_LEVEL_MATERIAL__GasMaterial_H__
|
|
#define NET_MINECRAFT_WORLD_LEVEL_MATERIAL__GasMaterial_H__
|
|
|
|
//package net.minecraft.world.level.material;
|
|
#include "Material.h"
|
|
|
|
class GasMaterial: public Material
|
|
{
|
|
public:
|
|
GasMaterial() {
|
|
replaceable();
|
|
}
|
|
|
|
bool isSolid() const {
|
|
return false;
|
|
}
|
|
|
|
bool blocksLight() const {
|
|
return false;
|
|
}
|
|
|
|
bool blocksMotion() const {
|
|
return false;
|
|
}
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_WORLD_LEVEL_MATERIAL__GasMaterial_H__*/
|