aboutsummaryrefslogtreecommitdiff
path: root/modules/gdnative/godot/array.h
diff options
context:
space:
mode:
authorThomas Herzog2017-08-02 04:16:45 +0200
committerGitHub2017-08-02 04:16:45 +0200
commit66a7763b0ef242f2c2a93b5e974e57bbd793408a (patch)
tree57451c98109968920a84666554ec7eaae216d916 /modules/gdnative/godot/array.h
parentee3530bdc29c5015f276e3c44a68fbf4db5daf6e (diff)
parent880048377de06c7e34cbfadd68bad2eb3ca17b3d (diff)
downloadgodot-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/array.h')
-rw-r--r--modules/gdnative/godot/array.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gdnative/godot/array.h b/modules/gdnative/godot/array.h
index cbdbfbdde..158170ba0 100644
--- a/modules/gdnative/godot/array.h
+++ b/modules/gdnative/godot/array.h
@@ -46,10 +46,10 @@ typedef struct {
} godot_array;
#endif
-#include "pool_arrays.h"
-#include "variant.h"
+#include <godot/pool_arrays.h>
+#include <godot/variant.h>
-#include "gdnative.h"
+#include <godot/gdnative.h>
void GDAPI godot_array_new(godot_array *r_dest);
void GDAPI godot_array_new_copy(godot_array *r_dest, const godot_array *p_src);