namespace RbxlReader.DataTypes; public class UDim2 { public UDim X, Y; public UDim2(UDim width, UDim height) { X = width; Y = height; } }