mindcraft/src/agent/npc/data.js
Kolby Nottingham 2f53a6729b npc refactor
2024-03-05 12:05:46 -08:00

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;
}
}