Skip to content

Commit

Permalink
fix: pub Song fields
Browse files Browse the repository at this point in the history
  • Loading branch information
John-Bush14 committed Jul 2, 2024
1 parent 4b6a305 commit 23a96f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ use fields::{Header, Note, Layer, Instrument, Binary, BinaryMut};

#[derive(Debug, PartialEq)]
pub struct Song {
header: Header,
pub header: Header,

notes: Vec<Note>,
pub notes: Vec<Note>,

layers: Vec<Layer>,
pub layers: Vec<Layer>,

instruments: Vec<Instrument>
pub instruments: Vec<Instrument>
}

pub mod parser;
Expand Down

0 comments on commit 23a96f4

Please sign in to comment.