shared_ptr -> std::shared_ptr
This is one of the first commits in a plan to remove all `using namespace std;` lines in the entire codebase as it is considered anti-pattern today.
This commit is contained in:
@@ -26,7 +26,7 @@ public:
|
||||
virtual void tick();
|
||||
virtual float getShadowHeightOffs();
|
||||
virtual void aiStep();
|
||||
virtual void setEquippedSlot(int slot, shared_ptr<ItemInstance> item);// 4J Stu - Brought forward change from 1.3 to fix #64688 - Customer Encountered: TU7: Content: Art: Aura of enchanted item is not displayed for other players in online game
|
||||
virtual void setEquippedSlot(int slot, std::shared_ptr<ItemInstance> item);// 4J Stu - Brought forward change from 1.3 to fix #64688 - Customer Encountered: TU7: Content: Art: Aura of enchanted item is not displayed for other players in online game
|
||||
virtual void animateRespawn();
|
||||
virtual float getHeadHeight();
|
||||
bool hasPermission(EGameCommand command) { return false; }
|
||||
|
||||
Reference in New Issue
Block a user