mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
21 lines
306 B
Objective-C
Executable File
21 lines
306 B
Objective-C
Executable File
//
|
|
// CBPlayerLayerView.m
|
|
// Coub
|
|
//
|
|
// Created by Tikhonenko Pavel on 23/11/2013.
|
|
// Copyright (c) 2013 Coub. All rights reserved.
|
|
//
|
|
|
|
#import "CBPlayerLayerView.h"
|
|
|
|
#import <AVFoundation/AVFoundation.h>
|
|
|
|
@implementation CBPlayerLayerView
|
|
|
|
+ (Class)layerClass
|
|
{
|
|
return [AVPlayerLayer class];
|
|
}
|
|
|
|
@end
|