main.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
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