inz-00/Assets/Scripts/Common/Size.cs
2019-11-17 20:33:32 +01:00

14 lines
262 B
C#

namespace Assets.Common
{
public class Size
{
public double Width { get; }
public double Height { get; }
public Size(double width, double height)
{
Width = width;
Height = height;
}
}
}