blob: e7f8d882e0d10ecff349e6bef1e7a794936fa382 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
//=============================================================================
#ifndef C_TF_PLAYERCLASS_H
#define C_TF_PLAYERCLASS_H
#ifdef _WIN32
#pragma once
#endif
#include "tf_playerclass_shared.h"
//-----------------------------------------------------------------------------
// TF Player Class
//-----------------------------------------------------------------------------
class C_TFPlayerClass : public CTFPlayerClassShared
{
public:
C_TFPlayerClass() {}
};
#endif // C_TF_PLAYERCLASS_H
|