diff options
| author | Connor Thomson <blumatrikz@gmail.com> | 2026-09-08 18:27:39 -0700 |
|---|---|---|
| committer | Connor Thomson <blumatrikz@gmail.com> | 2026-09-08 18:27:39 -0700 |
| commit | f1ddc12b68b4e4c8087962de25260470e6df2bea (patch) | |
| tree | 7d0440a6402a9b0ef75ded23fa64b68534255bba /src/client/chat.h | |
| parent | 6025860a61386bf767b29c3ec5fd0d31285f1056 (diff) | |
Add tuxanci2 files
Diffstat (limited to 'src/client/chat.h')
| -rw-r--r-- | src/client/chat.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/client/chat.h b/src/client/chat.h deleted file mode 100644 index 5427f60..0000000 --- a/src/client/chat.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef CHAT_H -#define CHAT_H - -#define CHAT_MAX_LINES 10 -#define CHAT_TIME_MULTIPLE 10 -#define CHAT_TIME_BLICK_CURSOR 20 -#define CHAT_LINE_WIDTH 320 - -#define CHAT_SIZE_X 320 -#define CHAT_SIZE_Y 240 - -#define CHAT_LOCATION_X (WINDOW_SIZE_X / 2 - CHAT_SIZE_X / 2) -#define CHAT_LOCATION_Y (WINDOW_SIZE_Y / 2 - CHAT_SIZE_Y / 2) - -extern void chat_init(); -extern void chat_draw(); -extern void chat_event(); -extern void chat_add(char *s); -extern bool_t chat_is_active(); -extern bool_t chat_is_recived_new_msg(); -extern void chat_quit(); - -#endif /* CHAT_H */ |