This commit is contained in:
2026-03-05 22:14:28 +01:00
parent 77364dddae
commit 04b68850d0
25 changed files with 374 additions and 8447 deletions

View File

@@ -543,6 +543,8 @@ pub struct Bank {
pub patterns: Vec<Pattern>,
#[serde(default)]
pub name: Option<String>,
#[serde(default)]
pub prelude: String,
}
impl Bank {
@@ -560,6 +562,7 @@ impl Default for Bank {
Self {
patterns: (0..MAX_PATTERNS).map(|_| Pattern::default()).collect(),
name: None,
prelude: String::new(),
}
}
}