efl/src/lib/ecore/ecore_animator.eo

33 lines
661 B
Plaintext
Raw Normal View History

class Ecore.Animator (Eo.Base)
2014-03-24 04:23:14 -07:00
{
eo_prefix: ecore_animator;
methods {
timeline_constructor {
/*@ Constructor. */
legacy: null;
2014-03-24 04:23:14 -07:00
params {
@in double runtime;
@in Ecore_Timeline_Cb func;
@in const(void)* data;
2014-03-24 04:23:14 -07:00
}
}
constructor {
/*@ Constructor. */
legacy: null;
2014-03-24 04:23:14 -07:00
params {
@in Ecore_Task_Cb func;
@in const(void)* data;
2014-03-24 04:23:14 -07:00
}
}
}
implements {
Eo.Base.destructor;
Eo.Base.event_freeze;
Eo.Base.event_thaw;
2014-03-24 04:23:14 -07:00
}
constructors {
.constructor;
.timeline_constructor;
}
}