diff options
author | Thomas Herzog <thomas.herzog@mail.com> | 2017-08-02 04:16:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-02 04:16:45 +0200 |
commit | 66a7763b0ef242f2c2a93b5e974e57bbd793408a (patch) | |
tree | 57451c98109968920a84666554ec7eaae216d916 /modules/gdnative/godot/transform2d.h | |
parent | ee3530bdc29c5015f276e3c44a68fbf4db5daf6e (diff) | |
parent | 880048377de06c7e34cbfadd68bad2eb3ca17b3d (diff) |
Merge pull request #10032 from karroffel/gdnative-header-include-paths
[GDNative] better header include paths
Diffstat (limited to 'modules/gdnative/godot/transform2d.h')
-rw-r--r-- | modules/gdnative/godot/transform2d.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gdnative/godot/transform2d.h b/modules/gdnative/godot/transform2d.h index 7171e528f2..41c8ba982c 100644 --- a/modules/gdnative/godot/transform2d.h +++ b/modules/gdnative/godot/transform2d.h @@ -45,9 +45,9 @@ typedef struct { } godot_transform2d; #endif -#include "gdnative.h" -#include "variant.h" -#include "vector2.h" +#include <godot/gdnative.h> +#include <godot/variant.h> +#include <godot/vector2.h> void GDAPI godot_transform2d_new(godot_transform2d *r_dest, const godot_real p_rot, const godot_vector2 *p_pos); void GDAPI godot_transform2d_new_axis_origin(godot_transform2d *r_dest, const godot_vector2 *p_x_axis, const godot_vector2 *p_y_axis, const godot_vector2 *p_origin); |