Files
brick-framework/GameCore/Movement/RotationComponent.cs

9 lines
159 B
C#

using GameCore.ECS.Interfaces;
using GameCore.Math;
namespace GameCore.Movement;
public class RotationComponent : IComponent
{
public Vector3 Rotation;
}