You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
651 B
25 lines
651 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
#include "cbase.h"
|
||
|
#include "functionproxy.h"
|
||
|
|
||
|
// memdbgon must be the last include file in a .cpp file!!!
|
||
|
#include "tier0/memdbgon.h"
|
||
|
|
||
|
class CTimeMaterialProxy : public CResultProxy
|
||
|
{
|
||
|
public:
|
||
|
virtual void OnBind( void *pC_BaseEntity );
|
||
|
};
|
||
|
|
||
|
void CTimeMaterialProxy::OnBind( void *pC_BaseEntity )
|
||
|
{
|
||
|
SetFloatResult( gpGlobals->curtime );
|
||
|
}
|
||
|
|
||
|
EXPOSE_INTERFACE( CTimeMaterialProxy, IMaterialProxy, "CurrentTime" IMATERIAL_PROXY_INTERFACE_VERSION );
|