Files
oak-editor/effects/transition.cpp
T
2018-07-05 23:52:28 +01:00

13 lines
200 B
C++

#include "transition.h"
Transition::Transition() {
length = 30;
link = NULL;
}
Transition* Transition::copy() {
return new Transition();
}
void Transition::process_transition(float) {}