Include and link physfs properly.
[tuxanci.git] / src / client / chat.h
blob5427f60266d06ac580fc5649cd57ec2b5392d355
1 #ifndef CHAT_H
2 #define CHAT_H
4 #define CHAT_MAX_LINES 10
5 #define CHAT_TIME_MULTIPLE 10
6 #define CHAT_TIME_BLICK_CURSOR 20
7 #define CHAT_LINE_WIDTH 320
9 #define CHAT_SIZE_X 320
10 #define CHAT_SIZE_Y 240
12 #define CHAT_LOCATION_X (WINDOW_SIZE_X / 2 - CHAT_SIZE_X / 2)
13 #define CHAT_LOCATION_Y (WINDOW_SIZE_Y / 2 - CHAT_SIZE_Y / 2)
15 extern void chat_init();
16 extern void chat_draw();
17 extern void chat_event();
18 extern void chat_add(char *s);
19 extern bool_t chat_is_active();
20 extern bool_t chat_is_recived_new_msg();
21 extern void chat_quit();
23 #endif /* CHAT_H */