mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 05:40:32 +05:30
14 lines
320 B
Swift
14 lines
320 B
Swift
import AppKit
|
|
|
|
final class MPVOGLView: NSView {
|
|
override init(frame frameRect: CGRect) {
|
|
super.init(frame: frameRect)
|
|
autoresizingMask = [.width, .height]
|
|
}
|
|
|
|
@available(*, unavailable)
|
|
required init?(coder _: NSCoder) {
|
|
fatalError("init(coder:) has not been implemented")
|
|
}
|
|
}
|