31 lines
575 B
C++
31 lines
575 B
C++
/*
|
|
-----------------------------------------------------------------------------
|
|
File: TransitionStarWipe.cpp
|
|
|
|
Desc: Black bands (horizontal window blinds) gradually close.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef _TransitionRectWipe_H_
|
|
#define _TransitionRectWipe_H_
|
|
|
|
|
|
#include "Transition.h"
|
|
|
|
|
|
class TransitionRectWipe : public Transition
|
|
{
|
|
public:
|
|
TransitionRectWipe();
|
|
~TransitionRectWipe();
|
|
|
|
virtual void DrawPrimitives();
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|