mindcraft/src/agent/npc/data.js

18 lines
307 B
JavaScript
Raw Normal View History

2024-03-05 12:05:46 -08:00
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;
}
}