mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-07 06:27:14 +00:00
15 lines
276 B
C++
15 lines
276 B
C++
#pragma once
|
|
|
|
#include "LookAtPlayerGoal.h"
|
|
|
|
class Villager;
|
|
|
|
class LookAtTradingPlayerGoal : public LookAtPlayerGoal {
|
|
private:
|
|
Villager* villager; // This is the owner of this goal
|
|
|
|
public:
|
|
LookAtTradingPlayerGoal(Villager* villager);
|
|
|
|
virtual bool canUse();
|
|
}; |