pla-01/Life/Misc/Size.cs
2019-10-26 16:47:08 +02:00

14 lines
250 B
C#

namespace Life.Misc
{
public struct Size
{
public int Width { get; }
public int Height { get; }
public Size(int width, int height)
{
Width = width;
Height = height;
}
}
}