GradientMode.swift 321 B

12345678910111213141516171819
  1. //
  2. // GradientMode.swift
  3. // IBAnimatable
  4. //
  5. // Created by Tom Baranes on 08/01/2018.
  6. // Copyright © 2018 IBAnimatable. All rights reserved.
  7. //
  8. import Foundation
  9. public enum GradientMode: String, IBEnum {
  10. case linear
  11. case radial
  12. case conical
  13. }
  14. #if swift(>=4.2)
  15. extension GradientMode: CaseIterable {}
  16. #endif