Files
itgmania212121/stepmania/src/StepMania.h
T
Glenn Maynard b72d42361a add headers
2003-11-14 17:17:36 +00:00

35 lines
804 B
C

#ifndef STEPMANIA_H
#define STEPMANIA_H
/*
-----------------------------------------------------------------------------
File: StepMania.h
Desc: Objects accessable from anywhere in the program.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Game.h"
int SMmain(int argc, char* argv[]);
void ApplyGraphicOptions();
void ExitGame();
void ResetGame( bool ReturnToFirstScreen=true );
void ReadGamePrefsFromDisk( bool bSwitchToLastPlayedGame=true );
void SaveGamePrefsToDisk();
void ChangeCurrentGame( Game g );
#if defined(WIN32)
#include "windows.h"
extern HWND g_hWndMain;
#endif
extern CString DirOfExecutable;
extern int g_argc;
extern char **g_argv;
#endif