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:
@@ -32,7 +32,7 @@ public:
|
||||
virtual void aiStep();
|
||||
|
||||
protected:
|
||||
virtual void checkHurtTarget(shared_ptr<Entity> target, float d);
|
||||
virtual void checkHurtTarget(std::shared_ptr<Entity> target, float d);
|
||||
virtual void causeFallDamage(float distance);
|
||||
virtual int getDeathLoot();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user