Files
itgmania212121/stepmania/src/TransitionFadeWipe.h
T
Chris Danford a40558031b Major rewrite of all classes related to gameplay (Song, Steps, Player,
WindowDancing and all its UI elements).  All of the dancing UI elements
have been consolidated into the Player class, which simplifies things a
great deal.  Steps and the classes that use them have been generalized
to use a variable number of panels (6 panel, 8 panel).  Only a little more
work is needed on the ColorArrows portion of Player to fully support these
panel modes.
2001-11-04 19:34:28 +00:00

32 lines
543 B
C++

/*
-----------------------------------------------------------------------------
File: TransitionFadeWipe.cpp
Desc: Fades out or in.
Copyright (c) 2001 Chris Danford. All rights reserved.
-----------------------------------------------------------------------------
*/
#ifndef _TransitionFadeWipe_H_
#define _TransitionFadeWipe_H_
#include "Transition.h"
#include "RageScreen.h"
#include "RageSound.h"
class TransitionFadeWipe : public Transition
{
public:
TransitionFadeWipe();
~TransitionFadeWipe();
void Draw();
};
#endif