]> git.jsancho.org Git - guile-irrlicht.git/blobdiff - src/box3d.h
box3d
[guile-irrlicht.git] / src / box3d.h
index 689dded4dcb493b213fc7173491c49562630771f..75b34825e8fc21b2a5fc6736d8c9ec58a4638382 100644 (file)
 
 #include <irrlicht/irrlicht.h>
 #include <libguile.h>
-#include "wrapped.h"
 
-extern "C" {
-
-  void
-  init_box3d (void);
-
-  DECLARE_WRAPPED_TYPE (irr::core::aabbox3df*, init_box3d_type,
-                        box3d_p, wrap_box3d, unwrap_box3d);
+SCM
+irr_core_aabbox3d_addInternalPoint (SCM box3d,
+                                    SCM point);
 
-  SCM
-  box3d_add_internal_point (SCM box3d,
-                            SCM point);
+SCM
+irr_core_aabbox3d_make ();
 
-  SCM
-  box3d_reset (SCM box3d,
-               SCM init_value);
-
-  SCM
-  make_box3d ();
+SCM
+irr_core_aabbox3d_reset (SCM box3d,
+                         SCM init_value);
 
+extern "C" {
+  void
+  init_box3d (void);
 }
 
 #endif