using System.Numerics; namespace DaggerFramework { public class Entity2d : Entity { public Vector2 Position { get => position; set => position = value; } protected Vector2 position; } }