using System; using System.Collections.Generic; namespace Spine { public interface Timeline { void Apply(Skeleton skeleton, float lastTime, float time, List events, float alpha); } }