diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-04-09 22:08:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-09 22:08:56 +0200 |
| commit | 2cca9b0631eccd66f1d3dec02438642619d7ee47 (patch) | |
| tree | e4770c5a7991330852d9229e74c5a195ba627185 /modules/dlscript/godot/godot_basis.h | |
| parent | 0198d2e03cfb8506e4a5c0f45efc43a1ac5d8d1a (diff) | |
| parent | c7f8b22ba07c27ceb91307a178ee7520677018e1 (diff) | |
Merge pull request #8338 from karroffel/dlscript-gdnative-rename
renamed dlscript module to gdnative
Diffstat (limited to 'modules/dlscript/godot/godot_basis.h')
| -rw-r--r-- | modules/dlscript/godot/godot_basis.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/modules/dlscript/godot/godot_basis.h b/modules/dlscript/godot/godot_basis.h deleted file mode 100644 index 43efd65ea2..0000000000 --- a/modules/dlscript/godot/godot_basis.h +++ /dev/null @@ -1,34 +0,0 @@ -#ifndef GODOT_DLSCRIPT_BASIS_H -#define GODOT_DLSCRIPT_BASIS_H - -#ifdef __cplusplus -extern "C" { -#endif - -#include <stdint.h> - -#ifndef GODOT_CORE_API_GODOT_BASIS_TYPE_DEFINED -typedef struct godot_basis { - uint8_t _dont_touch_that[36]; -} godot_basis; -#endif - -#include "../godot.h" - -void GDAPI godot_basis_new(godot_basis *p_basis); -void GDAPI godot_basis_new_with_euler_quat(godot_basis *p_basis, const godot_quat *p_euler); -void GDAPI godot_basis_new_with_euler(godot_basis *p_basis, const godot_vector3 *p_euler); - -godot_quat GDAPI godot_basis_as_quat(const godot_basis *p_basis); -godot_vector3 GDAPI godot_basis_get_euler(const godot_basis *p_basis); - -/* - * p_elements is a pointer to an array of 3 (!!) vector3 - */ -void GDAPI godot_basis_get_elements(godot_basis *p_basis, godot_vector3 *p_elements); - -#ifdef __cplusplus -} -#endif - -#endif // GODOT_DLSCRIPT_BASIS_H |