mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 11:00:07 +00:00
22 lines
530 B
Objective-C
22 lines
530 B
Objective-C
//
|
|
// LOTShape.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by Brandon Withrow on 12/14/15.
|
|
// Copyright © 2015 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreGraphics/CoreGraphics.h>
|
|
|
|
@interface LOTShapeGroup : NSObject
|
|
|
|
- (instancetype _Nonnull)initWithJSON:(NSDictionary *_Nonnull)jsonDictionary;
|
|
|
|
@property (nonatomic, readonly, nonnull) NSString *keyname;
|
|
@property (nonatomic, readonly, nonnull) NSArray *items;
|
|
|
|
+ (id _Nullable)shapeItemWithJSON:(NSDictionary * _Nonnull)itemJSON;
|
|
|
|
@end
|