9 lines
159 B
C#
9 lines
159 B
C#
using GameCore.ECS.Interfaces;
|
|
using GameCore.Math;
|
|
|
|
namespace GameCore.Movement;
|
|
|
|
public class RotationComponent : IComponent
|
|
{
|
|
public Vector3 Rotation;
|
|
} |