| 188 | } |
| 189 | |
| 190 | bool ClickButton::CanBeTargetedBy(PatchCableSource* source) const |
| 191 | { |
| 192 | if (source->GetConnectionType() == kConnectionType_Pulse) |
| 193 | return true; |
| 194 | return IUIControl::CanBeTargetedBy(source); |
| 195 | } |
| 196 | |
| 197 | void ClickButton::OnPulse(double time, float velocity, int flags) |
| 198 | { |
nothing calls this directly
no test coverage detected