Created
July 22, 2015 20:24
-
-
Save brocoo/f0df72a1420bb3b61fd6 to your computer and use it in GitHub Desktop.
Settings struct
This file contains 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
struct Settings { | |
// Make sure to add the "-D DEBUG" flag in the project settings for the Swift Compiler | |
static var Debug: Bool { | |
#if DEBUG | |
return true | |
#else | |
return false | |
#endif | |
} | |
private init() { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment