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
811 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 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)