mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-08-04 22:35:35 +02:00
18 lines
No EOL
307 B
JavaScript
18 lines
No EOL
307 B
JavaScript
export class NPCData {
|
|
constructor() {
|
|
this.goals = [];
|
|
}
|
|
|
|
toObject() {
|
|
return {
|
|
goals: this.goals
|
|
}
|
|
}
|
|
|
|
static fromObject(obj) {
|
|
if (!obj) return null;
|
|
let npc = new NPCData();
|
|
npc.goals = obj.goals;
|
|
return npc;
|
|
}
|
|
} |