Files
source/ModularizedTacticalAI/src/LegacyArmedVehiclePlan.cpp
T
BeatAroundTheBuscherandGitHub ed00830202 Fixes Upper/Lower Casing for include paths (#487)
* Fixing upper/lower case for includes

types.h, zconf.h and zlib.h were renamed so that global includes like Types.h
are not used.
2025-08-16 22:01:12 -03:00

26 lines
495 B
C++

/**
* @file
* @author Flugente (bears-pit.com)
*/
#include "../include/LegacyArmedVehiclePlan.h"
#include "Soldier Control.h" // definition of SOLDIERTYPE
#include "AIInternals.h"
namespace AI
{
namespace tactical
{
LegacyArmedVehiclePlan::LegacyArmedVehiclePlan( SOLDIERTYPE* npc )
: Plan( npc )
{
}
void LegacyArmedVehiclePlan::execute( PlanInputData& environment )
{
get_npc( )->aiData.bAction = ArmedVehicleDecideAction( get_npc( ) );
}
}
}