31 lines
568 B
C++
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 |