mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-04 01:04:18 +00:00
refactor: begin unglobbing std::vector
This commit is contained in:
@@ -10,7 +10,7 @@ public:
|
||||
int id;
|
||||
|
||||
private:
|
||||
vector<std::shared_ptr<SynchedEntityData::DataItem> > *packedItems;
|
||||
std::vector<std::shared_ptr<SynchedEntityData::DataItem> > *packedItems;
|
||||
|
||||
public:
|
||||
SetEntityDataPacket();
|
||||
@@ -23,7 +23,7 @@ public:
|
||||
virtual int getEstimatedSize();
|
||||
virtual bool isAync();
|
||||
|
||||
vector<std::shared_ptr<SynchedEntityData::DataItem> > *getUnpackedData();
|
||||
std::vector<std::shared_ptr<SynchedEntityData::DataItem> > *getUnpackedData();
|
||||
|
||||
public:
|
||||
static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new SetEntityDataPacket()); }
|
||||
|
||||
Reference in New Issue
Block a user