Files
dota_factory/src/lib/ecs/component/ThreatResponseBehaviorComponent.h

11 lines
161 B
C++

#pragma once
#include <optional>
#include "entt/entity/entity.hpp"
struct ThreatResponseBehaviorComponent
{
std::optional<entt::entity> currentTarget;
};