1
0
mirror of https://github.com/ValveSoftware/halflife.git synced 2025-03-31 06:39:06 +03:00
2013-08-30 13:34:05 -07:00

22 lines
363 B
C++

//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#ifndef VGUI_TICKSIGNAL_H
#define VGUI_TICKSIGNAL_H
#include<VGUI.h>
namespace vgui
{
class VGUIAPI TickSignal
{
public:
virtual void ticked()=0;
};
}
#endif