root/src/map/vending.h @ 22

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 _VENDING_H_
5#define _VENDING_H_
6
7#include "../common/cbasetypes.h"
8//#include "map.h"
9struct map_session_data;
10
11struct s_vending {
12        short index;
13        short amount;
14        unsigned int value;
15};
16
17void vending_closevending(struct map_session_data* sd);
18void vending_openvending(struct map_session_data* sd, const char* message, bool flag, const uint8* data, int count);
19void vending_vendinglistreq(struct map_session_data* sd, int id);
20void vending_purchasereq(struct map_session_data* sd, int id, const uint8* data, int count);
21
22#endif /* _VENDING_H_ */
Note: See TracBrowser for help on using the browser.