mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 11:00:07 +00:00
39 lines
715 B
Objective-C
39 lines
715 B
Objective-C
//
|
|
// Lottie.h
|
|
// Pods
|
|
//
|
|
// Created by brandon_withrow on 1/27/17.
|
|
//
|
|
//
|
|
|
|
#if __has_feature(modules)
|
|
@import Foundation;
|
|
#else
|
|
#import <Foundation/Foundation.h>
|
|
#endif
|
|
|
|
#ifndef Lottie_h
|
|
#define Lottie_h
|
|
|
|
//! Project version number for Lottie.
|
|
FOUNDATION_EXPORT double LottieVersionNumber;
|
|
|
|
//! Project version string for Lottie.
|
|
FOUNDATION_EXPORT const unsigned char LottieVersionString[];
|
|
|
|
#include <TargetConditionals.h>
|
|
|
|
#if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR
|
|
#import "LOTAnimationTransitionController.h"
|
|
#endif
|
|
|
|
#if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR
|
|
#import "LOTCacheProvider.h"
|
|
#endif
|
|
|
|
#import "LOTAnimationView.h"
|
|
#import "LOTAnimationCache.h"
|
|
#import "LOTComposition.h"
|
|
|
|
#endif /* Lottie_h */
|