summaryrefslogtreecommitdiffstats
path: root/src/game/server/chat.hh
blob: 524ea784117802fcf1668e0aab2fed294f2276f7 (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