diff options
author | Graham Northup <grissess@nexusg.org> | 2017-09-18 23:53:16 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-09-18 23:53:16 -0400 |
commit | 26e95364ad9073dd7cb571454cd52ae66f320a73 (patch) | |
tree | 96b94123569588515d79428fe6c940db75dc2813 /src/synth/param.rs | |
parent | 85925d69e08455bd91d32a27cd3690c9cb634a6b (diff) |
it builds and does a thing
Diffstat (limited to 'src/synth/param.rs')
-rw-r--r-- | src/synth/param.rs | 6 |
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 { |