mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-23 01:19:20 +01:00
29 lines
527 B
C++
29 lines
527 B
C++
#ifndef GSAI_AGENT_LOCATION_H
|
|
#define GSAI_AGENT_LOCATION_H
|
|
|
|
#include "core/int_types.h"
|
|
#include "core/math/vector3.h"
|
|
#include "core/object/reference.h"
|
|
|
|
class GSAIAgentLocation : public Reference {
|
|
GDCLASS(GSAIAgentLocation, Reference);
|
|
|
|
public:
|
|
Vector3 get_position();
|
|
void set_position(const Vector3 &val);
|
|
|
|
float get_orientation() const;
|
|
void set_orientation(const float val);
|
|
|
|
GSAIAgentLocation();
|
|
~GSAIAgentLocation();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
Vector3 position;
|
|
float orientation;
|
|
};
|
|
|
|
#endif
|