mirror of
https://github.com/YouHaveTrouble/GuildMaster.git
synced 2026-05-12 14:36:58 +00:00
add adventurer identities
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user