mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-17 19:22:32 +00:00
42 lines
1.6 KiB
C
42 lines
1.6 KiB
C
#pragma once
|
|
|
|
#include "../AI/Goals/Goal.h"
|
|
#include "../AI/Goals/AvoidPlayerGoal.h"
|
|
#include "../AI/Goals/BegGoal.h"
|
|
#include "../AI/Goals/BreakDoorGoal.h"
|
|
#include "../AI/Goals/BreedGoal.h"
|
|
#include "../AI/Goals/ControlledByPlayerGoal.h"
|
|
#include "../AI/Goals/DoorInteractGoal.h"
|
|
#include "../AI/Goals/EatTileGoal.h"
|
|
#include "../AI/Goals/FleeSunGoal.h"
|
|
#include "../AI/Goals/FollowOwnerGoal.h"
|
|
#include "../AI/Goals/FollowParentGoal.h"
|
|
#include "../AI/Goals/FloatGoal.h"
|
|
#include "../AI/Goals/GoalSelector.h"
|
|
#include "../AI/Goals/InteractGoal.h"
|
|
#include "../AI/Goals/LeapAtTargetGoal.h"
|
|
#include "../AI/Goals/LookAtPlayerGoal.h"
|
|
#include "../AI/Goals/LookAtTradingPlayerGoal.h"
|
|
#include "../AI/Goals/MakeLoveGoal.h"
|
|
#include "../AI/Goals/MeleeAttackGoal.h"
|
|
#include "../AI/Goals/MoveIndoorsGoal.h"
|
|
#include "../AI/Goals/MoveThroughVillageGoal.h"
|
|
#include "../AI/Goals/MoveTowardsRestrictionGoal.h"
|
|
#include "../AI/Goals/MoveTowardsTargetGoal.h"
|
|
#include "../AI/Goals/OcelotSitOnTileGoal.h"
|
|
#include "../AI/Goals/OfferFlowerGoal.h"
|
|
#include "../AI/Goals/OpenDoorGoal.h"
|
|
#include "../AI/Goals/OcelotAttackGoal.h"
|
|
#include "../AI/Goals/PanicGoal.h"
|
|
#include "../AI/Goals/PlayGoal.h"
|
|
#include "../AI/Goals/RandomLookAroundGoal.h"
|
|
#include "../AI/Goals/RandomStrollGoal.h"
|
|
#include "../AI/Goals/RangedAttackGoal.h"
|
|
#include "../AI/Goals/RestrictOpenDoorGoal.h"
|
|
#include "../AI/Goals/RestrictSunGoal.h"
|
|
#include "../AI/Goals/RunAroundLikeCrazyGoal.h"
|
|
#include "../AI/Goals/SitGoal.h"
|
|
#include "../AI/Goals/SwellGoal.h"
|
|
#include "../AI/Goals/TakeFlowerGoal.h"
|
|
#include "../AI/Goals/TemptGoal.h"
|
|
#include "../AI/Goals/TradeWithPlayerGoal.h" |