mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 19:40:19 +00:00
20 lines
487 B
Objective-C
20 lines
487 B
Objective-C
//
|
|
// LOTAnimatableBoundsValue.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by brandon_withrow on 7/20/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <QuartzCore/QuartzCore.h>
|
|
#import "LOTAnimatableValue.h"
|
|
|
|
@interface LOTAnimatableBoundsValue : NSObject <LOTAnimatableValue>
|
|
|
|
- (instancetype)initWithSizeValues:(NSDictionary *)sizeValue frameRate:(NSNumber *)frameRate;
|
|
|
|
@property (nonatomic, readonly) CGRect initialBounds;
|
|
|
|
@end
|