X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgui.cpp;fp=src%2Fgui.cpp;h=0000000000000000000000000000000000000000;hb=41a6ad96e81a8d8153c54877c4c12f61100677a9;hp=8b435df8b5b227caac640e9ab510595c873abdd2;hpb=bf2cb00e2ef19e2eb33557f900405f836ebe65a3;p=guile-irrlicht.git diff --git a/src/gui.cpp b/src/gui.cpp deleted file mode 100644 index 8b435df..0000000 --- a/src/gui.cpp +++ /dev/null @@ -1,46 +0,0 @@ -/* 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 - . -*/ - -#include -#include -#include "gui.h" -#include "gui-environment.h" -#include "gui-in-out-fader.h" -#include "gui-listbox.h" -#include "gui-scrollbar.h" -#include "gui-skin.h" -#include "gui-toolbar.h" - - -extern "C" { - - void - init_gui (void) - { - init_gui_environment (); - init_gui_in_out_fader (); - init_gui_listbox (); - init_gui_scrollbar (); - init_gui_skin (); - init_gui_toolbar (); - } - -}