Initial commit
This commit is contained in:
18
Torque/SDK/engine/game/guiNoMouseCtrl.cc
Normal file
18
Torque/SDK/engine/game/guiNoMouseCtrl.cc
Normal file
@@ -0,0 +1,18 @@
|
||||
//-----------------------------------------------------------------------------
|
||||
// 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);
|
||||
Reference in New Issue
Block a user