Files
itgmania212121/stepmania/src/TransitionRectWipe.h
T

32 lines
622 B
C++
Raw Normal View History

/*
-----------------------------------------------------------------------------
File: TransitionStarWipe.cpp
2001-11-03 10:52:42 +00:00
Desc: Black bands (horizontal window blinds) gradually close.
2002-05-19 01:59:48 +00:00
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
-----------------------------------------------------------------------------
*/
2001-11-03 10:52:42 +00:00
#ifndef _TransitionRectWipe_H_
#define _TransitionRectWipe_H_
#include "Transition.h"
2002-05-19 01:59:48 +00:00
#include "RageDisplay.h"
2001-11-03 10:52:42 +00:00
#include "RageSound.h"
class TransitionRectWipe : public Transition
{
public:
TransitionRectWipe();
~TransitionRectWipe();
2002-05-19 01:59:48 +00:00
virtual void DrawPrimitives();
2001-11-03 10:52:42 +00:00
};
#endif