mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-04-26 16:46:31 +00:00
25 lines
276 B
C++
25 lines
276 B
C++
#ifndef __CHATWEB_H__
|
|
#define __CHATWEB_H__
|
|
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
#include "Web.h"
|
|
|
|
enum class eWSSubscription {
|
|
WORLD_CHAT,
|
|
PRIVATE_CHAT,
|
|
TEAM_CHAT,
|
|
TEAM,
|
|
PLAYER,
|
|
INVALID
|
|
};
|
|
|
|
namespace ChatWeb {
|
|
void RegisterRoutes();
|
|
};
|
|
|
|
|
|
#endif // __CHATWEB_H__
|
|
|