mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
21 lines
281 B
C++
21 lines
281 B
C++
#pragma once
|
|
|
|
#include "Entity.hpp"
|
|
|
|
class PrimedTnt : public Entity
|
|
{
|
|
public:
|
|
PrimedTnt(Level*);
|
|
PrimedTnt(Level*, float, float, float);
|
|
|
|
float getShadowHeightOffs() override;
|
|
bool isPickable() override;
|
|
void tick() override;
|
|
|
|
void explode();
|
|
|
|
public:
|
|
int m_fuseTimer;
|
|
};
|
|
|