/* $Id: d_event.h 2697 2006-01-29 21:27:40Z danij $ * * Copyright (C) 1993-1996 by id Software, Inc. * * This source is available for distribution and/or modification * only under the terms of the DOOM Source Code License as * published by id Software. All rights reserved. * * The source is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License * for more details. */ #ifndef __D_EVENT__ #define __D_EVENT__ #ifndef __JDOOM__ # error "Using jDoom headers without __JDOOM__" #endif #include "doomtype.h" typedef enum { ga_nothing, ga_loadlevel, ga_newgame, ga_loadgame, ga_savegame, ga_playdemo, ga_completed, ga_victory, ga_worlddone, ga_screenshot } gameaction_t; extern gameaction_t gameaction; #endif