Files
oak-editor/timeline/ghost.cpp
T
2019-04-06 16:12:07 +11:00

14 lines
204 B
C++

#include "ghost.h"
Ghost::Ghost() :
transition(nullptr),
track_movement(0),
clip(nullptr)
{
}
Selection Ghost::ToSelection() const
{
return Selection(in, out, track->Sibling(track_movement));
}