mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
403 B
C++
18 lines
403 B
C++
#ifndef NullCompositionLayer_hpp
|
|
#define NullCompositionLayer_hpp
|
|
|
|
#include "Lottie/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.hpp"
|
|
|
|
namespace lottie {
|
|
|
|
class NullCompositionLayer: public CompositionLayer {
|
|
public:
|
|
NullCompositionLayer(std::shared_ptr<LayerModel> const &layer) :
|
|
CompositionLayer(layer, Vector2D::Zero()) {
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* NullCompositionLayer_hpp */
|