summaryrefslogtreecommitdiffstats
path: root/game/server/chat.hh
blob: 25572900ddc21d2347e4e8ba8d0f57050bc32f20 (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  */