Initial commit

This commit is contained in:
2023-03-18 20:58:14 +01:00
commit 3ccab02cc8
23 changed files with 6684 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
export class Guild {
gold: number;
level: number;
constructor(level: number, gold: number) {
this.gold = gold;
this.level = level;
}
}