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