ICT290 / src / scene / AIController / Goals / AttackTargetGoalEvaluator.h
AttackTargetGoalEvaluator.h
Raw
#pragma once
//#pragma warning (disable:4786)

#include "../Vehicle.h"
#include "GoalEvaluator.h"

class AttackTargetGoalEvaluator : public GoalEvaluator {
   public:
    explicit AttackTargetGoalEvaluator(float bias) : GoalEvaluator(bias) {}

    float CalculateDesirability(Vehicle* Bot) override;

    void SetGoal(Vehicle* Ent) override;
};