// // G A M E.O.N.E - LOW LEVEL LIB V1.0 // Copyright (C) 2001 LEVEL ONE ENTERTAINMENT, // Licensed under the terms of LGPL. //:--------------------------------------------------------------------------- //:Description // // FRAMEWORK LayerObject // // CLayer // +---CLayerAnim // o CAnim // //:--------------------------------------------------------------------------- ////////////////////////////////////////////////////////////////////// #if !defined(_LAYER_ANIM_H) #define _LAYER_ANIM_H #include "llfrm_layer.h" #include "llfrm_anim.h" class CLayerAnim : public CLayer { public: CLayerAnim(); virtual ~CLayerAnim(); virtual bool ParseMsg(const char *Type ); virtual void Draw(llgfx_id id ); virtual void Action(float delta); CAnim m_anim; }; #endif // !defined(_LAYER_ANIM_H)