7 lines
113 B
JavaScript
7 lines
113 B
JavaScript
class Player {
|
|
constructor(name, team, ship) {
|
|
this.name = name;
|
|
this.team = team;
|
|
this.ship = ship;
|
|
}
|
|
}
|