aseprite_loader/binary/
frame.rs

1use super::{chunks::cel::CelChunk, scalars::Word};
2
3#[derive(Debug)]
4pub struct Frame<'a> {
5    pub duration: Word,
6    // The cel chunks can directly be indexed via the layer index
7    pub cels: Vec<Option<CelChunk<'a>>>,
8}