X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fbox3d.h;h=4bb2731dcc72ffc893477086b47c1ff5f124fe9b;hb=058344d17fe203bf37905c5b54c946e323c963c7;hp=8ed47f57bd3a09504322aa39a879c44ebcd8d54b;hpb=37217d692d4ead81cfed829395a9a7a5caf9325c;p=guile-irrlicht.git diff --git a/src/box3d.h b/src/box3d.h index 8ed47f5..4bb2731 100644 --- a/src/box3d.h +++ b/src/box3d.h @@ -24,23 +24,21 @@ #include #include -#include "wrapped.h" -extern "C" { - - void - init_box3d (void); +SCM +core_aabbox3d_addInternalPoint (SCM box3d, + SCM point); - DECLARE_WRAPPED_TYPE (irr::core::aabbox3df*, init_box3d_type, - box3d_p, wrap_box3d, unwrap_box3d); +SCM +core_aabbox3d_make (); - SCM - box3d_reset (SCM box3d, - SCM init_value); - - SCM - make_box3d (); +SCM +core_aabbox3d_reset (SCM box3d, + SCM init_value); +extern "C" { + void + init_box3d (void); } #endif