diff options
Diffstat (limited to 'Minecraft.World/Throwable.h')
| -rw-r--r-- | Minecraft.World/Throwable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.World/Throwable.h b/Minecraft.World/Throwable.h index 4d7daea0..81f4cacc 100644 --- a/Minecraft.World/Throwable.h +++ b/Minecraft.World/Throwable.h @@ -20,7 +20,7 @@ public: int shakeTime; protected: - shared_ptr<Mob> owner; + std::shared_ptr<Mob> owner; private: int life; @@ -37,7 +37,7 @@ protected: public: virtual bool shouldRenderAtSqrDistance(double distance); - Throwable(Level *level, shared_ptr<Mob> mob); + Throwable(Level *level, std::shared_ptr<Mob> mob); Throwable(Level *level, double x, double y, double z); protected: |
