12 lines
183 B
C++
12 lines
183 B
C++
#include "transition.h"
|
|
|
|
Transition::Transition() {
|
|
length = 30;
|
|
}
|
|
|
|
Transition* Transition::copy() {
|
|
return new Transition();
|
|
}
|
|
|
|
void Transition::process_transition(float) {}
|