5 lines
62 B
JavaScript
5 lines
62 B
JavaScript
function Position(x = 0,y = 0)
|
|
{
|
|
this.x = x;
|
|
this.y = y;
|
|
} |