namespace GFramework.Core.ecs.components; /// /// 位置组件 /// public struct Position { public float X; public float Y; public Position(float x, float y) { X = x; Y = y; } }