Making progress.

This commit is contained in:
2020-02-12 22:31:06 +01:00
parent dc545e4063
commit a54bb70138
9 changed files with 243 additions and 12 deletions

11
src/item.rs Normal file
View File

@@ -0,0 +1,11 @@
use crate::fitter::Fitter;
pub struct Item {
pub fitter: Box<dyn Fitter>,
}
impl Item {
pub fn new(fitter: Box<dyn Fitter>) -> Self {
Item { fitter }
}
}