00001 /* 00002 Copyright Remco Bras and Michael de Lang 2007,2008. 00003 This file is part of RPGE. 00004 00005 RPGE is free software; you can redistribute it and/or modify 00006 it under the terms of the GNU General Public License as published by 00007 the Free Software Foundation; either version 3 of the License, or 00008 (at your option) any later version. 00009 00010 RPGE is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program. If not, see <http://www.gnu.org/licenses/> 00017 */ 00018 00019 #ifndef MAIN_INC_GUARD 00020 #define MAIN_INC_GUARD 00021 00022 #define VERSION_STRING "GNU RPGE 0.0.1\n\ 00023 Copyright (C) 2008 Remco Bras\n\ 00024 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\ 00025 This is free software: you are free to change and redistribute it.\n\ 00026 There is NO WARRANTY, to the extent permitted by law.\n\ 00027 This program is part of the GNU project, released under the aegis of GNU." 00028 #define HELP_STRING "Usage: RPGE <options>" 00029 #define EXIT_SUCCESS 0 00030 #define EXIT_FAILURE -1 00031 #define PROMPT "rpge>" 00032 00033 #include <SDL/SDL.h> 00034 #include <SDL/SDL_ttf.h> 00035 #include <SDL/SDL_image.h> 00036 #include <libguile.h> 00037 #include <getopt.h> 00038 #include "xalloc.h" 00039 #include "tile.h" 00040 #include "video.h" 00041 #include "mobs.h" 00042 #include "imagestack.h" 00043 #include "constants.h" 00044 #include "guile.h" 00045 #include "event.h" 00046 #include "window.h" 00047 #include "text.h" 00048 #include "dispatch.h" 00049 #include "config_file.h" 00050 00051 #endif