first commit
This commit is contained in:
22
Minecraft.World/BreakDoorGoal.h
Normal file
22
Minecraft.World/BreakDoorGoal.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include "DoorInteractGoal.h"
|
||||
#include "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();
|
||||
};
|
||||
Reference in New Issue
Block a user