root/src/char/int_status.h @ 6

Revision 1, 0.5 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 _INT_STATUS_H_
5#define _INT_STATUS_H_
6
7struct status_change_data;
8
9struct scdata {
10        int account_id, char_id;
11        int count;
12        struct status_change_data* data;
13};
14
15extern char scdata_txt[1024];
16
17struct scdata* status_search_scdata(int aid, int cid);
18void status_delete_scdata(int aid, int cid);
19void inter_status_save(void);
20void status_init(void);
21void status_final(void);
22
23#endif /* _INT_STATUS_H_ */
Note: See TracBrowser for help on using the browser.