Files
itgmania212121/stepmania/src/TransitionFade.h
T

34 lines
521 B
C++
Raw Normal View History

/*
-----------------------------------------------------------------------------
File: TransitionFade.cpp
Desc: Fades out or in.
Copyright (c) 2001 Chris Danford. All rights reserved.
-----------------------------------------------------------------------------
*/
2001-11-03 10:52:42 +00:00
#ifndef _TransitionFade_H_
#define _TransitionFade_H_
#include "Transition.h"
#include "RageScreen.h"
#include "RageSound.h"
class TransitionFade : public Transition
{
public:
TransitionFade();
~TransitionFade();
void Draw();
};
#endif