summaryrefslogblamecommitdiff
path: root/src/map/trade.h
blob: 6bb39936e27b4faad6df2970c9e2f3edf684b5ea (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                          

                 
 


                        

                                                                                         
                                                                              
                                                                



                                                    
                      
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder

#ifndef	_TRADE_H_
#define	_TRADE_H_

//#include "map.h"
struct map_session_data;

void trade_traderequest(struct map_session_data *sd, struct map_session_data *target_sd);
void trade_tradeack(struct map_session_data *sd,int type);
void trade_tradeadditem(struct map_session_data *sd,short index,short amount);
void trade_tradeaddzeny(struct map_session_data *sd,int amount);
void trade_tradeok(struct map_session_data *sd);
void trade_tradecancel(struct map_session_data *sd);
void trade_tradecommit(struct map_session_data *sd);

#endif /* _TRADE_H_ */