X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgacela.c;h=c36d0a13270eedefd09794ef1223f8d6d4554680;hb=ddb41086a294d20c28c04b9aa20900acf3624506;hp=4517f4841c78de8c8173111304f08757b5927800;hpb=e94c05c3062cb7d530c20bfc33bb5b058000034f;p=gacela.git diff --git a/src/gacela.c b/src/gacela.c index 4517f48..c36d0a1 100644 --- a/src/gacela.c +++ b/src/gacela.c @@ -1,10 +1,29 @@ +/* Gacela, a GNU Guile extension for fast games development + Copyright (C) 2009 by Javier Sancho Fernandez + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program 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 General Public License + along with this program. If not, see . +*/ + #include #include "gacela_SDL.h" +#include "gacela_GL.h" static void* register_functions (void* data) { SDL_register_functions (NULL); + GL_register_functions (NULL); return NULL; }