import Grid;
import Solver;

return {
	events: {
		onEnter: onEnter,
	}
};

function onEnter() {
	console.log(Solver.solve(Grid.get().colors));
}