mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-28 11:24:49 +00:00
refactor: begin unglobbing std::vector
This commit is contained in:
@@ -17,7 +17,7 @@ ContainerSetContentPacket::ContainerSetContentPacket()
|
||||
containerId = 0;
|
||||
}
|
||||
|
||||
ContainerSetContentPacket::ContainerSetContentPacket(int containerId, vector<std::shared_ptr<ItemInstance> > *newItems)
|
||||
ContainerSetContentPacket::ContainerSetContentPacket(int containerId, std::vector<std::shared_ptr<ItemInstance> > *newItems)
|
||||
{
|
||||
this->containerId = containerId;
|
||||
items = ItemInstanceArray((int)newItems->size());
|
||||
|
||||
Reference in New Issue
Block a user