11 lines
193 B
TypeScript
11 lines
193 B
TypeScript
export class Player {
|
|
id: string;
|
|
name: string;
|
|
color: string;
|
|
constructor(id:string, name:string, color:string) {
|
|
this.id = id;
|
|
this.name = name;
|
|
this.color = color;
|
|
}
|
|
}
|