pub trait Goal:
Debug
+ Send
+ Sync {
// Required methods
fn heuristic(&self, n: BlockPos) -> f32;
fn success(&self, n: BlockPos) -> bool;
}
pub trait Goal:
Debug
+ Send
+ Sync {
// Required methods
fn heuristic(&self, n: BlockPos) -> f32;
fn success(&self, n: BlockPos) -> bool;
}