aboutsummaryrefslogtreecommitdiff
path: root/modules/gdnative/godot/color.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/color.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/color.h')
-rw-r--r--modules/gdnative/godot/color.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/godot/color.h b/modules/gdnative/godot/color.h
index 77e709fbe..2cd6b48b4 100644
--- a/modules/gdnative/godot/color.h
+++ b/modules/gdnative/godot/color.h
@@ -45,8 +45,8 @@ typedef struct {
} godot_color;
#endif
-#include "gdnative.h"
-#include "string.h"
+#include <godot/gdnative.h>
+#include <godot/string.h>
void GDAPI godot_color_new_rgba(godot_color *r_dest, const godot_real p_r, const godot_real p_g, const godot_real p_b, const godot_real p_a);
void GDAPI godot_color_new_rgb(godot_color *r_dest, const godot_real p_r, const godot_real p_g, const godot_real p_b);