You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
716 B
C++
39 lines
716 B
C++
//
|
|
// 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
|