#pragma once #include #include #include "Effect.h" #include "Inventory.h" class EntityType; class Entity : public Inventory { private: float maxHP; float currentHP; Framework::Vec3 position; EntityType *zEntityType; public: friend Effect; friend EntityType; };