linker errors

This commit is contained in:
Aaron Kimbre
2025-01-26 00:44:17 -06:00
parent eeb7b68a3b
commit 848c930292
17 changed files with 424 additions and 351 deletions

24
dChatServer/ChatWeb.h Normal file
View File

@@ -0,0 +1,24 @@
#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__