Files
cafeberry/Minecraft.World/TradeWithPlayerGoal.h
T
2026-07-03 18:34:01 +01:00

18 lines
261 B
C++

#pragma once
#include "Goal.h"
class Villager;
class TradeWithPlayerGoal : public Goal
{
private:
Villager *mob; // This is the owner of the goal
public:
TradeWithPlayerGoal(Villager *mob);
bool canUse();
void start();
void stop();
};