mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-08 01:14:45 +00:00
refactor: unglob std::wstring
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user