efl/src/lib/ecore/ecore_animator.eo

28 lines
573 B
Plaintext
Raw Normal View History

class Ecore.Animator (Eo.Base)
2014-03-24 04:23:14 -07:00
{
eo_prefix: ecore_animator;
constructors {
timeline_constructor {
/*@ Contructor. */
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 {
/*@ Contructor. */
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.constructor;
Eo.Base.destructor;
Eo.Base.event_freeze;
Eo.Base.event_thaw;
2014-03-24 04:23:14 -07:00
}
}