Added GameModule

This commit is contained in:
2020-07-23 14:53:03 +02:00
parent 44575a8a08
commit 8d2df73484
33 changed files with 187 additions and 13 deletions

View File

@@ -1,10 +0,0 @@
export class Entry {
public messages: Array<string> = new Array<string>();
constructor(public character: string,
public user: string,
message: string) {
this.messages.push(message);
}
}