10 lines
No EOL
164 B
C#
10 lines
No EOL
164 B
C#
using Unity.Entities;
|
|
|
|
namespace DefaultNamespace
|
|
{
|
|
[GenerateAuthoringComponent]
|
|
public struct ActorTargetData : IComponentData
|
|
{
|
|
public Entity Target;
|
|
}
|
|
} |