Skip to content

Instantly share code, notes, and snippets.

@brocoo
Created July 22, 2015 20:24
Show Gist options
  • Save brocoo/f0df72a1420bb3b61fd6 to your computer and use it in GitHub Desktop.
Save brocoo/f0df72a1420bb3b61fd6 to your computer and use it in GitHub Desktop.
Settings struct
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