pla-01/Life/Misc/Size.cs
2019-10-28 16:12:04 +01:00

17 lines
284 B
C#

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