// $Id: Explosion.h 2340 2010-01-20 21:53:31Z matevz $ // Copyright (C) 1999-2008, Matevz Tadel. All rights reserved. // This file is part of GLED, released under GNU General Public License version 2. // For the licensing terms see $GLEDSYS/LICENSE or http://www.gnu.org/. #ifndef Var1_Explosion_H #define Var1_Explosion_H #include #include class Tringula; class Explosion : public ZGlass, public TimeMakerClient { MAC_RNR_FRIENDS(Explosion); private: void _init(); protected: Tringula *mTringula; //! X{g} Float_t mExplodeTime; // X{GS} Float_t mExplodeDuration; // X{GS} public: Explosion(const Text_t* n="Explosion", const Text_t* t=0); virtual ~Explosion(); virtual void SetTringula(Tringula* tring); virtual void TimeTick(Double_t t, Double_t dt); #include "Explosion.h7" ClassDef(Explosion, 1); }; // endclass Explosion #endif