mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-20 19:06:53 +01:00
27 lines
474 B
C++
27 lines
474 B
C++
#ifndef GSAI_FLEE_H
|
|
#define GSAI_FLEE_H
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
#include "gsai_seek.h"
|
|
|
|
class GSAITargetAcceleration;
|
|
|
|
class GSAIFlee : public GSAISeek {
|
|
GDCLASS(GSAIFlee, GSAISeek);
|
|
|
|
public:
|
|
void _calculate_steering(Ref<GSAITargetAcceleration> acceleration);
|
|
|
|
GSAIFlee();
|
|
~GSAIFlee();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
// Calculates acceleration to take an agent directly away from a target agent.
|
|
// @category - Individual behaviors
|
|
};
|
|
|
|
#endif
|