engine/hud/hudBitmapFrameCtrl.h

36 lines
744 B
C
Raw Normal View History

2024-01-07 04:36:33 +00:00
//-----------------------------------------------------------------------------
// V12 Engine
//
// Copyright (c) 2001 GarageGames.Com
// Portions Copyright (c) 2001 by Sierra Online, Inc.
//-----------------------------------------------------------------------------
#ifndef _HUDBITMAPFRAMECTRL_H_
#define _HUDBITMAPFRAMECTRL_H_
#ifndef _HUDBITMAPCTRL_H_
#include "hud/hudBitmapCtrl.h"
#endif
class HudBitmapFrameCtrl : public HudBitmapCtrl
{
private:
typedef HudBitmapCtrl Parent;
public:
HudBitmapFrameCtrl();
// GuiControl
void onPreRender();
// field data
RectI mSubRegion;
static void initPersistFields();
DECLARE_CONOBJECT(HudBitmapFrameCtrl);
};
#endif