diff options
Diffstat (limited to 'Minecraft.World/ItemFrame.h')
| -rw-r--r-- | Minecraft.World/ItemFrame.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Minecraft.World/ItemFrame.h b/Minecraft.World/ItemFrame.h index 1af5c2e9..d39c6cc8 100644 --- a/Minecraft.World/ItemFrame.h +++ b/Minecraft.World/ItemFrame.h @@ -30,12 +30,12 @@ protected: public: - shared_ptr<ItemInstance> getItem(); - void setItem(shared_ptr<ItemInstance> item); + std::shared_ptr<ItemInstance> getItem(); + void setItem(std::shared_ptr<ItemInstance> item); int getRotation(); void setRotation(int rotation); virtual void addAdditonalSaveData(CompoundTag *tag); virtual void readAdditionalSaveData(CompoundTag *tag); - virtual bool interact(shared_ptr<Player> player); + virtual bool interact(std::shared_ptr<Player> player); };
\ No newline at end of file |
