summaryrefslogtreecommitdiffstats
path: root/src/game/client/chat.hh
blob: 6eb77fd1c67b4bcbaa30222a264a3120ddbc5ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef CLIENT_CHAT_HH
#define CLIENT_CHAT_HH 1
#pragma once

namespace client_chat
{
void init(void);
void init_late(void);
void deinit(void);
void update(void);
void layout(void);
} // namespace client_chat

namespace client_chat
{
void clear(void);
void refresh_timings(void);
void print(const std::string& string);
} // namespace client_chat

#endif // CLIENT_CHAT_HH