123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- #include "Precompiled.h"
- #include "globaldata.h"
- #include "globaldata.h"
- #include "Main.h"
- void M_NewGame(int choice);
- void M_Episode(int choice);
- void M_Expansion(int choice);
- void M_ChooseSkill(int choice);
- void M_LoadGame(int choice);
- void M_LoadExpansion(int choice);
- void M_SaveGame(int choice);
- void M_Options(int choice);
- void M_EndGame(int choice);
- void M_ReadThis(int choice);
- void M_ReadThis2(int choice);
- void M_QuitDOOM(int choice);
- void M_ExitGame(int choice);
- void M_GameSelection(int choice);
- void M_CancelExit(int choice);
- void M_ChangeMessages(int choice);
- void M_ChangeGPad(int choice);
- void M_FullScreen(int choice);
- void M_ChangeSensitivity(int choice);
- void M_SfxVol(int choice);
- void M_MusicVol(int choice);
- void M_ChangeDetail(int choice);
- void M_SizeDisplay(int choice);
- void M_StartGame(int choice);
- void M_Sound(int choice);
- void M_FinishReadThis(int choice);
- void M_LoadSelect(int choice);
- void M_SaveSelect(int choice);
- void M_ReadSaveStrings(void);
- void M_QuickSave(void);
- void M_QuickLoad(void);
- void M_DrawMainMenu(void);
- void M_DrawQuit(void);
- void M_DrawReadThis1(void);
- void M_DrawReadThis2(void);
- void M_DrawNewGame(void);
- void M_DrawEpisode(void);
- void M_DrawOptions(void);
- void M_DrawSound(void);
- void M_DrawLoad(void);
- void M_DrawSave(void);
- void M_DrawSaveLoadBorder(int x,int y);
- void M_SetupNextMenu(menu_t *menudef);
- void M_DrawThermo(int x,int y,int thermWidth,int thermDot);
- void M_DrawEmptyCell(menu_t *menu,int item);
- void M_DrawSelCell(menu_t *menu,int item);
- void M_WriteText(int x, int y, char *string);
- int M_StringWidth(char *string);
- int M_StringHeight(char *string);
- void M_StartControlPanel(void);
- void M_StartMessage(char *string,messageRoutine_t routine,qboolean input);
- void M_StopMessage(void);
- void M_ClearMenus (void);
- extern const anim_t temp_epsd0animinfo[10];
- extern const anim_t temp_epsd1animinfo[9];
- extern const anim_t temp_epsd2animinfo[6];
- extern const char* const temp_chat_macros[];
- void Globals::InitGlobals()
- {
- #include "constructs.h"
- }
- Globals *g;
|