root/src/map/trade.h @ 10

Revision 1, 0.7 kB (checked in by jinshiro, 17 years ago)
Line 
1// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
2// For more information, see LICENCE in the main folder
3
4#ifndef _TRADE_H_
5#define _TRADE_H_
6
7//#include "map.h"
8struct map_session_data;
9
10void trade_traderequest(struct map_session_data *sd, struct map_session_data *target_sd);
11void trade_tradeack(struct map_session_data *sd,int type);
12void trade_tradeadditem(struct map_session_data *sd,short index,short amount);
13void trade_tradeaddzeny(struct map_session_data *sd,int amount);
14void trade_tradeok(struct map_session_data *sd);
15void trade_tradecancel(struct map_session_data *sd);
16void trade_tradecommit(struct map_session_data *sd);
17
18#endif /* _TRADE_H_ */
Note: See TracBrowser for help on using the browser.