17 lines
284 B
C#
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;
|
|
}
|
|
}
|
|
} |