vending.h 594 B

12345678910111213141516
  1. // Copyright (c) Athena Dev Teams - Licensed under GNU GPL
  2. // For more information, see LICENCE in the main folder
  3. #ifndef _VENDING_H_
  4. #define _VENDING_H_
  5. #include "../common/cbasetypes.h"
  6. //#include "map.h"
  7. struct map_session_data;
  8. void vending_closevending(struct map_session_data* sd);
  9. void vending_openvending(struct map_session_data* sd, const char* message, bool flag, const uint8* data, int count);
  10. void vending_vendinglistreq(struct map_session_data* sd, int id);
  11. void vending_purchasereq(struct map_session_data* sd, int id, const uint8* data, int count);
  12. #endif /* _VENDING_H_ */