summaryrefslogtreecommitdiff
path: root/src/synth/param.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth/param.rs')
-rw-r--r--src/synth/param.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/synth/param.rs b/src/synth/param.rs
index 3177ffd..ced5900 100644
--- a/src/synth/param.rs
+++ b/src/synth/param.rs
@@ -1,9 +1,9 @@
use super::*;
pub struct Param {
- name: String,
- default: Sample,
- buf: SampleBuffer,
+ pub name: String,
+ pub default: Sample,
+ pub buf: SampleBuffer,
}
impl Generator for Param {