mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 06:36:54 +00:00
41 lines
937 B
C++
41 lines
937 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose: Interface for the client to interact with the CTradingSession
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#ifndef TF_TRADING_H
|
|
#define TF_TRADING_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
class CEconItemView;
|
|
|
|
/**
|
|
* @return CSteamID of the client
|
|
*/
|
|
CSteamID Trading_GetLocalPlayerSteamID();
|
|
|
|
/**
|
|
* Request a trade session with the player by player index (i.e. in the same game)
|
|
* @param iPlayerIdx
|
|
*/
|
|
void Trading_RequestTrade( int iPlayerIdx );
|
|
|
|
/**
|
|
* Request a trade session with the player by CSteamID
|
|
* @param steamID
|
|
*/
|
|
void Trading_RequestTrade( const CSteamID &steamID );
|
|
|
|
/**
|
|
* Sends a gift to the player with the given steamID
|
|
* @param steamID
|
|
* @param giftItem
|
|
*/
|
|
void Trading_SendGift( const CSteamID &steamID, const CEconItemView& giftItem );
|
|
|
|
#endif // TF_TRADING_H
|