refactor: switch to wide string

This commit is contained in:
k0t9i
2023-01-25 19:53:02 +04:00
parent f7198a13ef
commit eb7bfc779b
46 changed files with 284 additions and 293 deletions

View File

@@ -8,6 +8,6 @@ namespace L2Bot::Domain::Serializers
class SerializerInterface
{
public:
virtual const std::string Serialize(std::vector<Node> nodes, const bool isArray = false) const = 0;
virtual const std::wstring Serialize(std::vector<Node> nodes, const bool isArray = false) const = 0;
};
}