X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=irrlicht.scm;h=45f3fc2fd6e690c0ea429a6830029d94d5d3af85;hb=3a61cfa560b91b5a87dc1a87f33e7bacccc1084e;hp=6f11ed3754a4ac840178c171695b9f356d0aa92b;hpb=edb2af0dec8731fcb478d2328faffd05edc080b6;p=guile-irrlicht.git diff --git a/irrlicht.scm b/irrlicht.scm index 6f11ed3..45f3fc2 100644 --- a/irrlicht.scm +++ b/irrlicht.scm @@ -19,14 +19,17 @@ (define-module (irrlicht) + #:use-module (oop goops) #:use-module (irrlicht base) #:use-module (irrlicht device) #:use-module (irrlicht gui) #:use-module (irrlicht scene) #:use-module (irrlicht video) + #:duplicates (merge-generics) #:re-export (add-animated-mesh-scene-node! add-camera-scene-node! add-static-text! + begin-scene create-device get-gui-environment get-mesh @@ -39,3 +42,6 @@ set-material-texture! set-md2-animation! set-window-caption!)) + +;; Merged methods have to be exported apart +(re-export draw-all)