2023-10-03 17:23:56 +03:00
|
|
|
|
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
2020-04-22 12:56:21 -04:00
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================//
|
|
|
|
|
#include "cbase.h"
|
2023-10-03 17:23:56 +03:00
|
|
|
|
#include "BaseAnimatedTextureProxy.h"
|
2020-04-22 12:56:21 -04:00
|
|
|
|
|
2023-10-03 17:23:56 +03:00
|
|
|
|
#include "imaterialproxydict.h"
|
2020-04-22 12:56:21 -04:00
|
|
|
|
// memdbgon must be the last include file in a .cpp file!!!
|
|
|
|
|
#include "tier0/memdbgon.h"
|
|
|
|
|
|
|
|
|
|
class CAnimatedTextureProxy : public CBaseAnimatedTextureProxy
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
CAnimatedTextureProxy() {}
|
|
|
|
|
virtual ~CAnimatedTextureProxy() {}
|
|
|
|
|
virtual float GetAnimationStartTime( void* pBaseEntity );
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-03 17:23:56 +03:00
|
|
|
|
EXPOSE_MATERIAL_PROXY( CAnimatedTextureProxy, AnimatedTexture );
|
2020-04-22 12:56:21 -04:00
|
|
|
|
|
|
|
|
|
#pragma warning (disable : 4100)
|
|
|
|
|
|
|
|
|
|
float CAnimatedTextureProxy::GetAnimationStartTime( void* pBaseEntity )
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|