using GameCore.ECS.Interfaces; using GameCore.Math; namespace GameCore.Physics; /// /// Stores the 3D velocity of an entity. /// This component is used by the PhysicsSystem to update the PositionComponent. /// public class VelocityComponent : IComponent { public Vector3 ActualVelocity; public Vector3 DesiredVelocity; }