Last active
October 10, 2017 21:30
-
-
Save dmytro-anokhin/893d127e1c3d4c759049359e1c2df715 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef NS_ENUM(NSInteger, CLRColorSpace) { | |
CLRColorSpaceRGB = 0, | |
CLRColorSpaceHSV | |
} NS_SWIFT_NAME(ColorSpace); | |
typedef NS_OPTIONS(NSUInteger, CLRDrawingMode) { | |
CLRDrawingModeNone = 0, | |
CLRDrawingModeFill = 1 << 0, | |
CLRDrawingModeStroke = 1 << 1 | |
} NS_SWIFT_NAME(DrawingMode); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment