Files
itgmania212121/stepmania/src/TransitionFadeWipe.h
T
2001-11-03 10:52:42 +00:00

31 lines
568 B
C++

//-----------------------------------------------------------------------------
// File: TransitionFadeWipe.cpp
//
// Desc: "Window blinds"-type transition.
//
// 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