35 lines
804 B
C
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
|