Timeline.cs 206 B

12345678910
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Spine
  4. {
  5. public interface Timeline
  6. {
  7. void Apply(Skeleton skeleton, float lastTime, float time, List<Event> events, float alpha);
  8. }
  9. }