mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-04-27 00:56:30 +00:00
21 lines
401 B
C++
21 lines
401 B
C++
#ifndef __CHATWEB_H__
|
|
#define __CHATWEB_H__
|
|
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
#include "Web.h"
|
|
#include "PlayerContainer.h"
|
|
#include "IActivityLog.h"
|
|
#include "ChatPacketHandler.h"
|
|
|
|
namespace ChatWeb {
|
|
void RegisterRoutes();
|
|
void SendWSPlayerUpdate(const PlayerData& player, eActivityType activityType);
|
|
void SendWSChatMessage(const ChatMessage& chatMessage);
|
|
};
|
|
|
|
|
|
#endif // __CHATWEB_H__
|
|
|