2D-Platformer/Assets/Scripts/AI/GoapActionActor.cs
2022-02-12 12:53:50 +02:00

9 lines
No EOL
119 B
C#

using Unity.Entities;
namespace AI
{
public struct GoapActionActor : IComponentData
{
public Entity Actor;
}
}