| 6 | |
| 7 | #[derive(Clone)] |
| 8 | pub struct FloatingNote { |
| 9 | x: u16, |
| 10 | y: u16, |
| 11 | pixels: Vec<Vec<Span<'static>>>, |
| 12 | spawn_time: Instant, |
| 13 | } |
| 14 | |
| 15 | impl FloatingNote { |
| 16 | fn new(x: u16, y: u16, note_images: &[image::DynamicImage]) -> Option<Self> { |
nothing calls this directly
no outgoing calls
no test coverage detected