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

View File

@@ -0,0 +1,12 @@
#ifndef __CHATJSONUTILS_H__
#define __CHATJSONUTILS_H__
#include "json_fwd.hpp"
#include "PlayerContainer.h"
void to_json(nlohmann::json& data, const PlayerData& playerData);
void to_json(nlohmann::json& data, const PlayerContainer& playerContainer);
void to_json(nlohmann::json& data, const TeamContainer& teamData);
void to_json(nlohmann::json& data, const TeamData& teamData);
#endif // __CHATJSONUTILS_H__