2002-06-27 17:49:10 +00:00
|
|
|
#pragma once
|
2002-02-10 06:25:12 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
2002-06-27 17:49:10 +00:00
|
|
|
Class: TransitionInvisible
|
2002-02-10 06:25:12 +00:00
|
|
|
|
2002-06-27 17:49:10 +00:00
|
|
|
Desc: Doesn't draw anything. Only used for timing.
|
2002-02-10 06:25:12 +00:00
|
|
|
|
2002-05-19 01:59:48 +00:00
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
2002-06-27 17:49:10 +00:00
|
|
|
Chris Danford
|
2002-02-10 06:25:12 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "Transition.h"
|
2002-05-19 01:59:48 +00:00
|
|
|
#include "RageDisplay.h"
|
2002-02-10 06:25:12 +00:00
|
|
|
#include "RageSound.h"
|
2002-05-19 01:59:48 +00:00
|
|
|
#include "Quad.h"
|
2002-02-10 06:25:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class TransitionInvisible : public Transition
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
TransitionInvisible();
|
|
|
|
|
|
2002-05-19 01:59:48 +00:00
|
|
|
virtual void DrawPrimitives();
|
2002-02-10 06:25:12 +00:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
};
|