#pragma once #include #include "Inventory.h" #include "Chunk.h" using namespace Framework; class Block : public Model3D, public Inventory { private: bool visible; bool transparent; bool passable; float hp; float maxHP; float hardness; float speedModifier; ItemType *zTool; public: Block( Vec3 position ); ~Block(); friend Chunk; friend BlockType; };