mirror of
https://github.com/exyte/Macaw.git
synced 2024-11-12 18:18:35 +03:00
22 lines
499 B
Swift
22 lines
499 B
Swift
//
|
|
// MCAMediaTimingFillMode_macOS.swift
|
|
// MacawOSX
|
|
//
|
|
// Created by Anton Marunko on 27/09/2018.
|
|
// Copyright © 2018 Exyte. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
#if os(OSX)
|
|
import AppKit
|
|
|
|
public struct MCAMediaTimingFillMode {
|
|
public static let forwards = CAMediaTimingFillMode.forwards
|
|
public static let backwards = CAMediaTimingFillMode.backwards
|
|
public static let both = CAMediaTimingFillMode.both
|
|
public static let removed = CAMediaTimingFillMode.removed
|
|
}
|
|
|
|
#endif
|