SpriteManager 2
All Classes Functions Variables Enumerations Enumerator Properties
ISpriteAnimatable.cs
1 //-----------------------------------------------------------------
2 // Copyright 2011 Brady Wright and Above and Beyond Software
3 // All rights reserved
4 //-----------------------------------------------------------------
5 
6 
7 using UnityEngine;
8 using System.Collections;
9 
10 
11 // Interface for animatable sprite-based objects.
12 public interface ISpriteAnimatable
13 {
14  bool StepAnim(float time);
15 
16  ISpriteAnimatable prev
17  {
18  get;
19  set;
20  }
21 
22  ISpriteAnimatable next
23  {
24  get;
25  set;
26  }
27 }