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.cpp | |
| 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.cpp')
| -rw-r--r-- | modules/gdnative/godot/quat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/godot/quat.cpp b/modules/gdnative/godot/quat.cpp index 6800f7fc7..37ee4d6b1 100644 --- a/modules/gdnative/godot/quat.cpp +++ b/modules/gdnative/godot/quat.cpp @@ -27,10 +27,10 @@ /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#include "quat.h" -#include "core/variant.h" +#include <godot/quat.h> #include "core/math/quat.h" +#include "core/variant.h" #ifdef __cplusplus extern "C" { |
