summaryrefslogtreecommitdiff
path: root/game/client/econ/econ_trading.h
blob: 9557dd97ba1f7ddd70939430d98bb259745c10e0 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//========= 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