engine/game/guiNoMouseCtrl.cc
2024-01-07 04:36:33 +00:00

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