X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fcamera-scene-node.h;fp=src%2Fcamera-scene-node.h;h=1b546ba42d9940434ae6b7ca8c8297879e780f49;hb=626e88180d4a966f12defc721c4a4411451ea916;hp=0000000000000000000000000000000000000000;hpb=fb9011bf9160be890e0a6b98fcff9ed95ae0bd77;p=guile-irrlicht.git diff --git a/src/camera-scene-node.h b/src/camera-scene-node.h new file mode 100644 index 0000000..1b546ba --- /dev/null +++ b/src/camera-scene-node.h @@ -0,0 +1,39 @@ +/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine + + Copyright (C) 2020 Javier Sancho + + This file is part of guile-irrlicht. + + guile-irrlicht is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation; either version 3 of the + License, or (at your option) any later version. + + guile-irrlicht is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with guile-irrlicht. If not, see + . +*/ + +#ifndef __GUILE_IRRLICHT_CAMERA_SCENE_NODE_H_INCLUDED__ +#define __GUILE_IRRLICHT_CAMERA_SCENE_NODE_H_INCLUDED__ + +#include +#include +#include "wrapped.h" + +extern "C" { + + void + init_camera_scene_node (void); + + DECLARE_WRAPPED_TYPE (irr::scene::ICameraSceneNode*, init_camera_scene_node_type, + camera_scene_node_p, wrap_camera_scene_node, unwrap_camera_scene_node); + +} + +#endif