/* $Id: h_event.h 2678 2006-01-23 14:44:26Z 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 __H_EVENT__ #define __H_EVENT__ #ifndef __JHERETIC__ # error "Using jHeretic headers without __JHERETIC__" #endif #include "h_type.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