trade.h 570 B

123456789101112131415
  1. // Copyright (c) Athena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. #ifndef _TRADE_H_
  4. #define _TRADE_H_
  5. #include "map.h"
  6. void trade_traderequest(struct map_session_data *sd, struct map_session_data *target_sd);
  7. void trade_tradeack(struct map_session_data *sd,int type);
  8. void trade_tradeadditem(struct map_session_data *sd,int index,int amount);
  9. void trade_tradeok(struct map_session_data *sd);
  10. void trade_tradecancel(struct map_session_data *sd);
  11. void trade_tradecommit(struct map_session_data *sd);
  12. #endif // _TRADE_H_