11 lines
161 B
C++
11 lines
161 B
C++
#pragma once
|
|
|
|
#include <optional>
|
|
|
|
#include "entt/entity/entity.hpp"
|
|
|
|
struct ThreatResponseBehaviorComponent
|
|
{
|
|
std::optional<entt::entity> currentTarget;
|
|
};
|