mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-22 22:25:37 +01:00
9 lines
126 B
C
9 lines
126 B
C
|
#pragma once
|
||
|
|
||
|
namespace AI
|
||
|
{
|
||
|
struct CombatBehaviorState
|
||
|
{
|
||
|
std::weak_ptr<ECS::Entity> CurrentTarget{};
|
||
|
};
|
||
|
}
|