summaryrefslogtreecommitdiffstats
path: root/game/server/chat.hh
blob: 7efc7ffbc25435b797ee451b134fe13a6933c15b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SERVER_CHAT_HH
#define SERVER_CHAT_HH 1
#pragma once

struct Session;

namespace server_chat
{
void init(void);
void broadcast(const char *message);
void broadcast(const char *message, const char *sender);
void send(Session *session, const char *message);
void send(Session *session, const char *message, const char *sender);
} // namespace server_chat

#endif /* SERVER_CHAT_HH  */