Streamlining
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace fxl.codes.kisekae.Models
|
||||
{
|
||||
public class Coordinate
|
||||
{
|
||||
public Coordinate(int x, int y)
|
||||
{
|
||||
X = x;
|
||||
Y = y;
|
||||
}
|
||||
|
||||
public int X { get; }
|
||||
public int Y { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user