mirror of
https://github.com/tribes2/engine.git
synced 2026-01-20 11:44:46 +00:00
31 lines
680 B
C++
31 lines
680 B
C++
//-----------------------------------------------------------------------------
|
|
// V12 Engine
|
|
//
|
|
// Copyright (c) 2001 GarageGames.Com
|
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _GUIBACKGROUNDCTRL_H_
|
|
#define _GUIBACKGROUNDCTRL_H_
|
|
|
|
#ifndef _GUICONTROL_H_
|
|
#include "gui/guiControl.h"
|
|
#endif
|
|
|
|
class GuiBackgroundCtrl : public GuiControl
|
|
{
|
|
private:
|
|
typedef GuiControl Parent;
|
|
|
|
public:
|
|
bool mDraw;
|
|
|
|
//creation methods
|
|
DECLARE_CONOBJECT(GuiBackgroundCtrl);
|
|
GuiBackgroundCtrl();
|
|
|
|
void onRender(Point2I offset, const RectI &updateRect, GuiControl *firstResponder);
|
|
};
|
|
|
|
#endif
|