// // 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 // // CActor // +--CLayer // +--CLayerCont ////////////////////////////////////////////////////////////////////// #if !defined(_LAYERCONT_H) #define _LAYERCONT_H #include "llfrm_layer.h" class CLayerCont : public CLayer { public: CLayerCont(); virtual ~CLayerCont(); virtual bool ParseMsg(const char *arg ); virtual void Action(float delta); virtual void Draw(llgfx_id id); }; #endif // !defined(_LAYERCONT_H)