mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-07 16:06:41 +00:00
23 lines
652 B
C++
23 lines
652 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
#include "cbase.h"
|
|
#include "particles_simple.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose:
|
|
//-----------------------------------------------------------------------------
|
|
class C_ResourceChunk : public C_BaseAnimating
|
|
{
|
|
DECLARE_CLASS( C_ResourceChunk, C_BaseAnimating );
|
|
public:
|
|
DECLARE_CLIENTCLASS();
|
|
};
|
|
|
|
IMPLEMENT_CLIENTCLASS_DT( C_ResourceChunk, DT_ResourceChunk, CResourceChunk )
|
|
END_RECV_TABLE()
|
|
|