using GameCore.ECS.Interfaces; using GameCore.Math; namespace GameCore.Physics; /// /// Stores the 3D position of an entity in the game world. /// public class PositionComponent : IComponent { public Vector3 Position; }