refactor: unglob std::wstring

This commit is contained in:
Tropical
2026-03-06 11:50:22 -06:00
parent 41db813a6d
commit cdc08700e4
581 changed files with 2156 additions and 2154 deletions

View File

@@ -7,13 +7,13 @@ class UpdateGameRuleProgressPacket : public Packet, public enable_shared_from_th
{
public:
ConsoleGameRules::EGameRuleType m_definitionType;
wstring m_messageId;
std::wstring m_messageId;
int m_icon, m_auxValue;
int m_dataTag;
byteArray m_data;
UpdateGameRuleProgressPacket();
UpdateGameRuleProgressPacket(ConsoleGameRules::EGameRuleType definitionType, const wstring &messageId, int icon, int auxValue, int dataTag, void *data, int dataLength);
UpdateGameRuleProgressPacket(ConsoleGameRules::EGameRuleType definitionType, const std::wstring &messageId, int icon, int auxValue, int dataTag, void *data, int dataLength);
virtual void read(DataInputStream *dis);
virtual void write(DataOutputStream *dos);