summaryrefslogtreecommitdiff
path: root/klangfarbrs/src/instrument.rs
diff options
context:
space:
mode:
Diffstat (limited to 'klangfarbrs/src/instrument.rs')
-rw-r--r--klangfarbrs/src/instrument.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/klangfarbrs/src/instrument.rs b/klangfarbrs/src/instrument.rs
index 65da6b6..3a381dc 100644
--- a/klangfarbrs/src/instrument.rs
+++ b/klangfarbrs/src/instrument.rs
@@ -1,8 +1,8 @@
use super::{ Osc, Envelope, Sample };
-struct Instrument {
- osc_bank: Vec<Osc>,
- envelope: Envelope,
+pub struct Instrument {
+ pub osc_bank: Vec<Osc>,
+ pub envelope: Envelope,
}
impl Instrument {