mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-25 16:12:54 +00:00
21 lines
449 B
C++
21 lines
449 B
C++
#pragma once
|
|
|
|
#include "DoorInteractGoal.h"
|
|
#include "../../Util/SharedConstants.h"
|
|
|
|
class BreakDoorGoal : public DoorInteractGoal {
|
|
private:
|
|
static const int DOOR_BREAK_TIME = SharedConstants::TICKS_PER_SECOND * 12;
|
|
|
|
int breakTime;
|
|
int lastBreakProgress;
|
|
|
|
public:
|
|
BreakDoorGoal(Mob* mob);
|
|
|
|
virtual bool canUse();
|
|
virtual void start();
|
|
virtual void stop();
|
|
virtual bool canContinueToUse();
|
|
virtual void tick();
|
|
}; |