Fabio Nuno 48101fd550 Add support to paste animation URL from LottieFiles
Add support to paste animation's URL from LottieFiles to preview on
Lottie Viewer
2017-08-06 23:19:40 -03:00

21 lines
362 B
Objective-C

//
// LAMainView.h
// lottie-ios
//
// Created by brandon_withrow on 8/1/17.
// Copyright © 2017 Brandon Withrow. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface LAMainView : NSView
- (void)setAnimationProgress:(CGFloat)progress;
- (void)playAnimation;
- (void)rewindAnimation;
- (void)toggleLoop;
-(void)openAnimationURL:(NSURL *)url;
@end