aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/PigZombie.h
diff options
context:
space:
mode:
authorvoid_17 <heroerror3@gmail.com>2026-03-02 17:37:16 +0700
committervoid_17 <heroerror3@gmail.com>2026-03-02 17:37:16 +0700
commit119bff351450ea16ffda550b6e0f67379b29f708 (patch)
treed9f28714afd516bc2450f33b0a77c5e05ff4de90 /Minecraft.World/PigZombie.h
parent8a2a62ea1d47364f802cf9aae97668bc4a7007b5 (diff)
Revert "shared_ptr -> std::shared_ptr"
This reverts commit 7074f35e4ba831e358117842b99ee35b87f85ae5.
Diffstat (limited to 'Minecraft.World/PigZombie.h')
-rw-r--r--Minecraft.World/PigZombie.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Minecraft.World/PigZombie.h b/Minecraft.World/PigZombie.h
index ff164edf..b47efacb 100644
--- a/Minecraft.World/PigZombie.h
+++ b/Minecraft.World/PigZombie.h
@@ -5,7 +5,7 @@ using namespace std;
class DamageSource;
-// SKIN BY XaPhobia Chris Beidler
+// SKIN BY XaPhobia Chris Beidler
class PigZombie : public Zombie
{
public:
@@ -32,13 +32,13 @@ public:
virtual void readAdditionalSaveData(CompoundTag *tag);
protected:
- virtual std::shared_ptr<Entity> findAttackTarget();
+ virtual shared_ptr<Entity> findAttackTarget();
public:
virtual bool hurt(DamageSource *source, int dmg);
private:
- void alert(std::shared_ptr<Entity> target);
+ void alert(shared_ptr<Entity> target);
protected:
virtual int getAmbientSound();
@@ -49,12 +49,12 @@ protected:
virtual int getDeathLoot();
private:
- static std::shared_ptr<ItemInstance> sword;
+ static shared_ptr<ItemInstance> sword;
public:
virtual void finalizeMobSpawn();
- std::shared_ptr<ItemInstance> getCarriedItem();
+ shared_ptr<ItemInstance> getCarriedItem();
static void staticCtor();
};