| 114 | } |
| 115 | |
| 116 | Speed* Speed::clone() const |
| 117 | { |
| 118 | // no copy constructor |
| 119 | if (_innerAction) |
| 120 | return Speed::create(_innerAction->clone(), _speed); |
| 121 | |
| 122 | return nullptr; |
| 123 | } |
| 124 | |
| 125 | void Speed::startWithTarget(Node* target) |
| 126 | { |
no test coverage detected