diff options
Diffstat (limited to 'game/client/tf2/c_tfplayerresource.h')
| -rw-r--r-- | game/client/tf2/c_tfplayerresource.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/game/client/tf2/c_tfplayerresource.h b/game/client/tf2/c_tfplayerresource.h new file mode 100644 index 0000000..210b106 --- /dev/null +++ b/game/client/tf2/c_tfplayerresource.h @@ -0,0 +1,30 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: TF's custom C_PlayerResource +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef C_TFPLAYERRESOURCE_H +#define C_TFPLAYERRESOURCE_H +#ifdef _WIN32 +#pragma once +#endif + +#include "shareddefs.h" +#include "c_playerresource.h" + +class C_TFPlayerResource : public C_PlayerResource +{ + DECLARE_CLASS( C_TFPlayerResource, C_PlayerResource ); +public: + DECLARE_CLIENTCLASS(); + + C_TFPlayerResource(); + virtual ~C_TFPlayerResource(); + +public: +}; + + +#endif // C_TFPLAYERRESOURCE_H |