mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
16 lines
379 B
Objective-C
16 lines
379 B
Objective-C
#ifndef LottieRenderTreeInternal_h
|
|
#define LottieRenderTreeInternal_h
|
|
|
|
#include <LottieCpp/LottieRenderTree.h>
|
|
#import "RenderNode.hpp"
|
|
|
|
#include <memory>
|
|
|
|
@interface LottieRenderNode (Internal)
|
|
|
|
- (instancetype _Nonnull)initWithRenderNode:(std::shared_ptr<lottie::OutputRenderNode> const &)renderNode __attribute__((objc_direct));
|
|
|
|
@end
|
|
|
|
#endif /* LottieRenderTreeInternal_h */
|