Files
mcpe/source/World/Entity/FallingTile.hpp
iProgramInCpp 9642818a88 * Initial commit.
:)
2023-07-30 22:22:02 +03:00

22 lines
316 B
C++

#pragma once
#include "Entity.hpp"
class FallingTile : public Entity
{
public:
FallingTile(Level*);
FallingTile(Level*, float x, float y, float z, int id);
float getShadowHeightOffs() override;
bool isPickable() override;
void tick() override;
Level* getLevel();
public:
int m_id;
int field_E0 = 0;
};