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.

35 lines
683 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
//
// 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)