mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 06:36:54 +00:00
25 lines
601 B
C
25 lines
601 B
C
|
//========= 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
|