mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-20 19:06:53 +01:00
22 lines
305 B
C++
22 lines
305 B
C++
#ifndef GSAI_EVADE_H
|
|
#define GSAI_EVADE_H
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
#include "gsai_pursue.h"
|
|
|
|
class GSAIEvade : public GSAIPursue {
|
|
GDCLASS(GSAIEvade, GSAIPursue);
|
|
|
|
public:
|
|
float _get_modified_acceleration();
|
|
|
|
GSAIEvade();
|
|
~GSAIEvade();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif
|