Files
dota_factory/src/lib/ecs/component/RepairBehaviorComponent.h
2026-06-05 20:09:20 +02:00

12 lines
192 B
C++

#pragma once
#include <optional>
#include "entt/entity/entity.hpp"
struct RepairBehaviorComponent
{
std::optional<entt::entity> currentTarget;
float maxRepairRange_tiles = 0.0f;
};