mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
25 lines
651 B
C++
25 lines
651 B
C++
//========= 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 );
|