#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