add adventurer identities

This commit is contained in:
2024-11-21 20:56:40 +01:00
parent b956152edb
commit 7ab0bfbf67
2 changed files with 19 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
export default class AdventurerIdentity {
id: string;
name: string;
portrait: string;
constructor(id: string, name: string, portrait: string) {
this.id = id;
this.name = name;
this.portrait = portrait;
}
}