Simple 9x9 jigsaw puzzle game written in Swift 4, also Slidding puzzle concept included.
So here it is.
It uses 81 UIBezierPaths
to cut out puzzle pieces from main image.
And it looks like this:
video: https://www.dropbox.com/s/8las1gfayfgbf32/puzzlePreview.m4v?dl=0
Also I have included Slidding puzzle. It can be with numbers or image. Numbers can be 4x4, 8x8 and so on. Image can be 4x4, 6x6, 8x8.
enum NumberLevels : Int {
case easy = 4
case medium = 8
case hard = 12
case insane = 16
case areyoukiddingme = 20
}
enum ImageLevels : Int {
case easy = 4
case normal = 6
case hard = 8
}
Thanks for the ratings. Reviving this repo at the moment.