source-engine/game/server/tf2base/tf_playerclass.h
2022-08-10 19:52:28 +03:00

25 lines
604 B
C++

//========= Copyright © 1996-2004, Valve LLC, 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