summaryrefslogtreecommitdiff
path: root/src/map/trade.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/trade.h')
-rw-r--r--src/map/trade.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/map/trade.h b/src/map/trade.h
new file mode 100644
index 000000000..2114f5a42
--- /dev/null
+++ b/src/map/trade.h
@@ -0,0 +1,15 @@
+// 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"
+void trade_traderequest(struct map_session_data *sd,int target_id);
+void trade_tradeack(struct map_session_data *sd,int type);
+void trade_tradeadditem(struct map_session_data *sd,int index,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_