diff options
| author | Thomas Herzog | 2017-08-02 04:16:45 +0200 |
|---|---|---|
| committer | GitHub | 2017-08-02 04:16:45 +0200 |
| commit | 66a7763b0ef242f2c2a93b5e974e57bbd793408a (patch) | |
| tree | 57451c98109968920a84666554ec7eaae216d916 /modules/gdnative/godot/quat.h | |
| parent | ee3530bdc29c5015f276e3c44a68fbf4db5daf6e (diff) | |
| parent | 880048377de06c7e34cbfadd68bad2eb3ca17b3d (diff) | |
| download | godot-66a7763.tar.gz godot-66a7763.tar.zst godot-66a7763.zip | |
Merge pull request #10032 from karroffel/gdnative-header-include-paths
[GDNative] better header include paths
Diffstat (limited to 'modules/gdnative/godot/quat.h')
| -rw-r--r-- | modules/gdnative/godot/quat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/godot/quat.h b/modules/gdnative/godot/quat.h index b86cbacc6..0979653d9 100644 --- a/modules/gdnative/godot/quat.h +++ b/modules/gdnative/godot/quat.h @@ -45,8 +45,8 @@ typedef struct { } godot_quat; #endif -#include "gdnative.h" -#include "vector3.h" +#include <godot/gdnative.h> +#include <godot/vector3.h> void GDAPI godot_quat_new(godot_quat *r_dest, const godot_real p_x, const godot_real p_y, const godot_real p_z, const godot_real p_w); void GDAPI godot_quat_new_with_axis_angle(godot_quat *r_dest, const godot_vector3 *p_axis, const godot_real p_angle); |
