API  1.0.0
CPAnimation.h
Go to the documentation of this file.
1 
2 @interface CPAnimation : CPObject
3 {
4  CPTimeInterval _lastTime;
5  CPTimeInterval _duration;
6 
7  CPAnimationCurve _animationCurve;
8  CAMediaTimingFunction _timingFunction;
9 
10  float _frameRate;
11  float _progress;
12 
13  id <CPAnimationDelegate> _delegate;
14  CPTimer _timer;
15  unsigned _implementedDelegateMethods;
16 }
17 @end
A timer object that can send a message after the given time interval.
Definition: CPTimer.h:2