root/src/char/int_party.h @ 11

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_PARTY_H_
5#define _INT_PARTY_H_
6
7struct party;
8
9int inter_party_init(void);
10void inter_party_final(void);
11int inter_party_save(void);
12int inter_party_parse_frommap(int fd);
13int inter_party_leave(int party_id,int account_id, int char_id);
14
15extern char party_txt[1024];
16
17//For the TXT->SQL converter
18int inter_party_fromstr(char *str, struct party *p);
19
20#endif /* _INT_PARTY_H_ */
Note: See TracBrowser for help on using the browser.