14 lines
250 B
C#
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;
|
|
}
|
|
}
|
|
} |