mindcraft/agent_code/template.js

9 lines
270 B
JavaScript
Raw Normal View History

2023-11-07 12:48:26 -06:00
import * as skills from '../utils/skills.js';
import * as world from '../utils/world.js';
import Vec3 from 'vec3';
2023-11-07 12:48:26 -06:00
export async function main(bot) {
/* CODE HERE */
return true; // potentially redundant return statement, in case agent doesn't return anything
2023-11-07 12:48:26 -06:00
}