| 59 | */ |
| 60 | typedef struct Modulation { |
| 61 | Modulation(): source(nullptr), depth(0.0f) {} |
| 62 | Modulation(ModSource* _source, float _depth): source(_source), depth(_depth) {} |
| 63 | ModSource* source; // Would like to make as a ref but since it's hashed it needs a default constructor |
| 64 | float depth; // Can be positive (to the right) or negative (to the left) |
nothing calls this directly
no outgoing calls
no test coverage detected