5 lines
63 B
JavaScript
5 lines
63 B
JavaScript
function Ship(id) {
|
|
this.id = id;
|
|
this.x = 0;
|
|
this.y = 0;
|
|
}
|