aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/LeapAtTargetGoal.h
blob: 6495e13121230052bc454927df064fb69918d74b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "Goal.h"

class LeapAtTargetGoal : public Goal
{
private:
    Mob *mob; // Owner of this goal
    weak_ptr<Mob> target;
    float yd;

public:
	LeapAtTargetGoal(Mob *mob, float yd);

    virtual bool canUse();
    virtual bool canContinueToUse();
    virtual void start();
};