Files
itgmania212121/stepmania/src/ScreenMessage.h
T

33 lines
687 B
C
Raw Normal View History

#ifndef SCREENMESSAGE_H
#define SCREENMESSAGE_H
2004-06-09 02:48:38 +00:00
/*
-----------------------------------------------------------------------------
File: ScreenMessage
Desc: Definition of common ScreenMessages
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
2002-05-20 08:59:37 +00:00
// common ScreenMessages
enum ScreenMessage {
SM_None = 0,
SM_DoneClosingWipingLeft,
SM_DoneClosingWipingRight,
SM_DoneOpeningWipingLeft,
SM_DoneOpeningWipingRight,
2002-05-27 08:23:27 +00:00
SM_MenuTimer,
2003-01-26 20:49:05 +00:00
SM_BeginFadingOut,
2003-01-26 07:33:03 +00:00
SM_GoToNextScreen,
SM_GoToPrevScreen,
2003-11-25 21:57:00 +00:00
SM_GainFocus,
SM_LoseFocus,
2004-06-09 02:48:38 +00:00
SM_StopMusic,
2002-05-20 08:59:37 +00:00
SM_User = 100
};
#endif