mirror of
https://github.com/tribes2/engine.git
synced 2026-04-25 22:35:26 +00:00
20 lines
601 B
C++
20 lines
601 B
C++
|
|
//-----------------------------------------------------------------------------
|
||
|
|
// V12 Engine
|
||
|
|
//
|
||
|
|
// Copyright (c) 2001 GarageGames.Com
|
||
|
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
||
|
|
//-----------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#include "GUI/guiControl.h"
|
||
|
|
|
||
|
|
//------------------------------------------------------------------------------
|
||
|
|
class GuiNoMouseCtrl : public GuiControl
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
|
||
|
|
// GuiControl
|
||
|
|
bool pointInControl(const Point2I &) { return(false); }
|
||
|
|
DECLARE_CONOBJECT(GuiNoMouseCtrl);
|
||
|
|
};
|
||
|
|
IMPLEMENT_CONOBJECT(GuiNoMouseCtrl);
|