12 lines
192 B
C++
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;
|
|
};
|