summaryrefslogtreecommitdiff
path: root/game/client/tf2/c_tfplayerresource.h
blob: 210b106f6e1f21627af7aa92175fde9467dd602f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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