source-engine/game/shared/tf2base/tf_item.h
2022-08-13 03:20:41 +03:00

47 lines
982 B
C++

//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======//
//
//
//=============================================================================//
#ifndef TF_ITEM_H
#define TF_ITEM_H
#ifdef _WIN32
#pragma once
#endif
#ifdef CLIENT_DLL
#include "c_props.h"
#else
#include "props.h"
#endif
#ifdef CLIENT_DLL
#define CTFPlayer C_TFPlayer
#define CTFItem C_TFItem
#endif
class CTFPlayer;
//=============================================================================
//
// TF Item
//
class CTFItem : public CDynamicProp
{
public:
DECLARE_CLASS( CTFItem,CDynamicProp )
DECLARE_NETWORKCLASS();
// Unique identifier.
virtual unsigned int GetItemID();
// Pick up and drop.
virtual void PickUp( CTFPlayer *pPlayer, bool bInvisible );
virtual void Drop( CTFPlayer *pPlayer, bool bVisible, bool bThrown = false, bool bMessage = true );
#ifdef CLIENT_DLL
virtual bool ShouldDraw();
virtual ShadowType_t ShadowCastType();
#endif
};
#endif // TF_ITEM_H