mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
23 lines
633 B
Objective-C
23 lines
633 B
Objective-C
//
|
|
// LOTShapeRectangle.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by Brandon Withrow on 12/15/15.
|
|
// Copyright © 2015 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
@class LOTAnimatableBoundsValue;
|
|
@class LOTAnimatablePointValue;
|
|
@class LOTAnimatableNumberValue;
|
|
|
|
@interface LOTShapeRectangle : NSObject
|
|
|
|
- (instancetype)initWithJSON:(NSDictionary *)jsonDictionary frameRate:(NSNumber *)frameRate;
|
|
|
|
@property (nonatomic, readonly) LOTAnimatablePointValue *position;
|
|
@property (nonatomic, readonly) LOTAnimatablePointValue *size;
|
|
@property (nonatomic, readonly) LOTAnimatableNumberValue *cornerRadius;
|
|
|
|
@end
|