This commit is contained in:
2023-09-14 10:59:21 +02:00
commit 77ffe04e2f
14 changed files with 1982 additions and 0 deletions

11
Player/playerData.ts Normal file
View File

@@ -0,0 +1,11 @@
import { userData } from "../Account/userData";
export class playerData{
id : string = ""
position : number[] = []
constructor(id: string){
this.id = id;
this.position = [0,0,0];
}
}