Files
itgmania212121/stepmania/src/TransitionRectWipe.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
582 B
C++

/*
-----------------------------------------------------------------------------
File: TransitionStarWipe.cpp
Desc: Black bands (horizontal window blinds) gradually close.
Copyright (c) 2001 Chris Danford. All rights reserved.
-----------------------------------------------------------------------------
*/
#ifndef _TransitionRectWipe_H_
#define _TransitionRectWipe_H_
#include "Transition.h"
#include "RageScreen.h"
#include "RageSound.h"
class TransitionRectWipe : public Transition
{
public:
TransitionRectWipe();
~TransitionRectWipe();
void Draw();
};
#endif