add player

This commit is contained in:
Halit Aksoy 2022-05-02 00:41:10 +03:00
parent a65ed8fe16
commit 20885474db

9
src/core/Player.ts Normal file
View File

@ -0,0 +1,9 @@
export class Player {
id: string;
name: string;
constructor(id: string, name: string) {
this.id = id;
this.name = name;
}
}