blob: e5a3ab98e79d4ba8972e241ed2e548596c99c4cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef INT_PARTY_HPP
#define INT_PARTY_HPP
# include "../strings/fwd.hpp"
int inter_party_init(void);
int inter_party_save(void);
int inter_party_parse_frommap(int fd);
void inter_party_leave(int party_id, int account_id);
extern FString party_txt;
#endif // INT_PARTY_HPP
|