2002-11-16 08:07:38 +00:00
|
|
|
#ifndef STEPMANIA_H
|
|
|
|
|
#define STEPMANIA_H
|
2001-12-19 05:04:20 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
File: StepMania.h
|
|
|
|
|
|
2002-05-19 01:59:48 +00:00
|
|
|
Desc: Objects accessable from anywhere in the program.
|
2001-12-19 05:04:20 +00:00
|
|
|
|
2002-05-19 01:59:48 +00:00
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
|
|
|
Chris Danford
|
2001-12-19 05:04:20 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
2002-03-30 20:00:13 +00:00
|
|
|
void ApplyGraphicOptions();
|
2003-01-19 04:44:22 +00:00
|
|
|
void ExitGame();
|
|
|
|
|
void ResetGame();
|
2001-12-19 05:04:20 +00:00
|
|
|
|
2003-01-24 23:09:31 +00:00
|
|
|
#include "arch/ArchHooks/ArchHooks.h"
|
|
|
|
|
extern ArchHooks *HOOKS; // global and accessable from anywhere in our program
|
2002-11-16 08:07:38 +00:00
|
|
|
|
2003-02-14 23:16:32 +00:00
|
|
|
#if defined(WIN32)
|
|
|
|
|
extern HWND g_hWndMain;
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-11-16 08:07:38 +00:00
|
|
|
#endif
|