// // IFTTTAnimator.h // JazzHands // // Created by Devin Foley on 9/28/13. // Copyright (c) 2013 IFTTT Inc. All rights reserved. // #import @protocol IFTTTAnimatable; @interface IFTTTAnimator : NSObject - (void)addAnimation:(id)animation; - (void)removeAnimation:(id)animation; - (void)removeAllAnimations; - (void)animate:(CGFloat)time; @end