csgo-2018-source/hammer/cmdhandlers.h
2021-07-24 21:11:47 -07:00

25 lines
492 B
C++

//====== Copyright c 1996-2007, Valve Corporation, All rights reserved. =======//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
#ifndef CMDHANDLERS_H
#define CMDHANDLERS_H
#ifdef _WIN32
#pragma once
#endif
class IToolHandlerInfo
{
public:
virtual BOOL UpdateCmdUI( CCmdUI *pCmdUI ) = 0;
virtual BOOL Execute( UINT uMsg ) = 0;
};
IToolHandlerInfo * _ToolToHanderInfo(UINT uMsg);
#endif // #ifndef CMDHANDLERS_H