// // 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 global object mousepointer // // CActor // +--CLayer // +--CLayerAnim : CAnim // +--CLayerMousePointer // #ifndef _CMOUSEPOINTER_H #define _CMOUSEPOINTER_H #include "llfrm_layeranim.h" /* * Maus Objekt Steuerung */ class CMousePointer : public CLayerAnim { public: CMousePointer(); virtual ~CMousePointer(); bool ParseMsg(const char *arg); void Action(float delta); bool Message(const char *Type ); void Draw(llgfx_id delta); }; #endif