2021-11-12 12:14:42 -05:00

20 lines
390 B
C#

namespace Assets.Scripts.Utilities
{
class Position
{
private float x { get; set; }
private float y { get; set; }
public Position(float x, float y)
{
this.x = x;
this.y = y;
}
public override string ToString()
{
return "[" + x.ToString() + "|" + y.ToString() + "]";
}
}
}