/* * ITranstion.cs * * Author * Larry Ewing * * Larry had a little lamb * */ using System; namespace FSpot { public interface ITransition : IEffect { bool OnEvent (Gtk.Widget w); int Frames { get; } } }