mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
21 lines
362 B
Objective-C
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
|