psychopath/src/boundable.rs
Nathan Vegdahl c0a26819c6 Bunch of code quality improvements based on running clippy.
None of them change behavior, just make the code cleaner.
2017-07-22 17:21:11 -07:00

9 lines
97 B
Rust

#![allow(dead_code)]
use bbox::BBox;
pub trait Boundable {
fn bounds(&self) -> &[BBox];
}