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

@@ -33,7 +33,7 @@ std::shared_ptr<Packet> SkullTileEntity::getUpdatePacket()
return std::shared_ptr<TileEntityDataPacket>(new TileEntityDataPacket(x, y, z, TileEntityDataPacket::TYPE_SKULL, tag));
}
void SkullTileEntity::setSkullType(int skullType, const wstring &extra)
void SkullTileEntity::setSkullType(int skullType, const std::wstring &extra)
{
this->skullType = skullType;
this->extraType = extra;
@@ -54,7 +54,7 @@ void SkullTileEntity::setRotation(int rot)
rotation = rot;
}
wstring SkullTileEntity::getExtraType()
std::wstring SkullTileEntity::getExtraType()
{
return extraType;
}