setC method
Implementation
AutomationEventC setC(AutomationEventC o) {
frame = o.frame;
type = o.type;
for (int i = 0; i < paramCount; i++) {
params[i] = o.params[i];
}
return this;
}
AutomationEventC setC(AutomationEventC o) {
frame = o.frame;
type = o.type;
for (int i = 0; i < paramCount; i++) {
params[i] = o.params[i];
}
return this;
}