├── .gitignore ├── HowColor.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── HowColor ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Controllers │ ├── GameViewController.swift │ └── ViewController.swift ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist └── Tools │ ├── Device.swift │ └── UserDefaults.swift ├── HowColorTests ├── HowColorTests.swift └── Info.plist ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/.gitignore -------------------------------------------------------------------------------- /HowColor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HowColor.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColor.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HowColor/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColor/AppDelegate.swift -------------------------------------------------------------------------------- /HowColor/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColor/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /HowColor/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColor/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HowColor/Controllers/GameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColor/Controllers/GameViewController.swift -------------------------------------------------------------------------------- /HowColor/Controllers/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColor/Controllers/ViewController.swift -------------------------------------------------------------------------------- /HowColor/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColor/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HowColor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColor/Info.plist -------------------------------------------------------------------------------- /HowColor/Tools/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColor/Tools/Device.swift -------------------------------------------------------------------------------- /HowColor/Tools/UserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColor/Tools/UserDefaults.swift -------------------------------------------------------------------------------- /HowColorTests/HowColorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColorTests/HowColorTests.swift -------------------------------------------------------------------------------- /HowColorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/HowColorTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaced/HowColor/HEAD/README.md --------------------------------------------------------------------------------