#pragma once class Entity; class AIComponent { public: Entity* owner = nullptr; virtual ~AIComponent(); virtual void Update(int delta_time); };