vending.h 523 B

1234567891011121314
  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 "map.h"
  6. void vending_closevending(struct map_session_data *sd);
  7. void vending_openvending(struct map_session_data *sd,int len,char *message,int flag,unsigned char *p);
  8. void vending_vendinglistreq(struct map_session_data *sd,int id);
  9. void vending_purchasereq(struct map_session_data *sd,int len,int id,unsigned char *p);
  10. #endif // _VENDING_H_