Files
itgmania212121/stepmania/src/TransitionInvisible.h
T
2002-12-17 21:32:33 +00:00

28 lines
561 B
C++

#ifndef TRANSITIONINVISIBLE_H
#define TRANSITIONINVISIBLE_H
/*
-----------------------------------------------------------------------------
Class: TransitionInvisible
Desc: Doesn't draw anything. Only used for timing.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Transition.h"
class TransitionInvisible : public Transition
{
public:
TransitionInvisible();
virtual void DrawPrimitives();
protected:
};
#endif