refactor: unglob std::enable_shared_from_this

This commit is contained in:
Tropical
2026-03-08 22:43:43 +01:00
committed by JuiceyDev
parent 6260238f5e
commit 4516cf2e30
87 changed files with 87 additions and 87 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ enum EEntityDamageType
eEntityDamageType_Cactus,
};
class Entity : public enable_shared_from_this<Entity>
class Entity : public std::enable_shared_from_this<Entity>
{
friend class Gui; // 4J Stu - Added to be able to access the shared flag functions and constants, without making them publicly available to everything
public: