tge/engine/game/guiNoMouseCtrl.cc
2017-04-17 06:17:10 -06:00

19 lines
605 B
C++
Executable File

//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
#include "gui/core/guiControl.h"
//------------------------------------------------------------------------------
class GuiNoMouseCtrl : public GuiControl
{
typedef GuiControl Parent;
public:
// GuiControl
bool pointInControl(const Point2I &) { return(false); }
DECLARE_CONOBJECT(GuiNoMouseCtrl);
};
IMPLEMENT_CONOBJECT(GuiNoMouseCtrl);