2001-11-04 19:34:28 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
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"
|
2002-03-30 20:00:13 +00:00
|
|
|
#include "RectangleActor.h"
|
2001-11-03 10:52:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class TransitionFade : public Transition
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
TransitionFade();
|
2002-01-16 10:01:32 +00:00
|
|
|
virtual ~TransitionFade();
|
2001-11-03 10:52:42 +00:00
|
|
|
|
2002-01-16 10:01:32 +00:00
|
|
|
virtual void RenderPrimitives();
|
2001-11-03 10:52:42 +00:00
|
|
|
|
2002-01-16 10:01:32 +00:00
|
|
|
protected:
|
|
|
|
|
RectangleActor m_rect;
|
2001-11-03 10:52:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|