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

9 lines
No EOL
171 B
C#

using Unity.Entities;
[GenerateAuthoringComponent]
public struct Rotation2D : IComponentData
{
public float Rotation { get; set; }
public float Axis { get; set; }
}