├── .gitignore ├── Match3 Game.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── serhiyyashchuk.xcuserdatad │ │ └── IDEFindNavigatorScopes.plist ├── xcshareddata │ └── xcschemes │ │ └── Match3 Game.xcscheme └── xcuserdata │ └── serhiyyashchuk.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Match3 Game ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Background.imageset │ │ ├── Background@3x.png │ │ └── Contents.json │ ├── Button.imageset │ │ ├── Button@3x.png │ │ └── Contents.json │ ├── Contents.json │ ├── GameOver.imageset │ │ ├── Contents.json │ │ └── GameOver@3x.png │ └── LevelComplete.imageset │ │ ├── Contents.json │ │ └── LevelComplete@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Chain.swift ├── Cookie.swift ├── GameScene.swift ├── GameViewController.swift ├── Grid.atlas │ ├── MaskTile.png │ ├── MaskTile@2x.png │ ├── MaskTile@3x.png │ ├── Tile_1.png │ ├── Tile_10.png │ ├── Tile_10@2x.png │ ├── Tile_10@3x.png │ ├── Tile_11.png │ ├── Tile_11@2x.png │ ├── Tile_11@3x.png │ ├── Tile_12.png │ ├── Tile_12@2x.png │ ├── Tile_12@3x.png │ ├── Tile_13.png │ ├── Tile_13@2x.png │ ├── Tile_13@3x.png │ ├── Tile_14.png │ ├── Tile_14@2x.png │ ├── Tile_14@3x.png │ ├── Tile_15.png │ ├── Tile_15@2x.png │ ├── Tile_15@3x.png │ ├── Tile_1@2x.png │ ├── Tile_1@3x.png │ ├── Tile_2.png │ ├── Tile_2@2x.png │ ├── Tile_2@3x.png │ ├── Tile_3.png │ ├── Tile_3@2x.png │ ├── Tile_3@3x.png │ ├── Tile_4.png │ ├── Tile_4@2x.png │ ├── Tile_4@3x.png │ ├── Tile_5.png │ ├── Tile_5@2x.png │ ├── Tile_5@3x.png │ ├── Tile_7.png │ ├── Tile_7@2x.png │ ├── Tile_7@3x.png │ ├── Tile_8.png │ ├── Tile_8@2x.png │ └── Tile_8@3x.png ├── Grid2D.swift ├── Info.plist ├── Level.swift ├── LevelData.swift ├── Levels │ ├── Level_0.json │ ├── Level_1.json │ ├── Level_2.json │ ├── Level_3.json │ └── Level_4.json ├── Sounds │ ├── Chomp.wav │ ├── Drip.wav │ ├── Error.wav │ ├── Ka-Ching.wav │ ├── Mining by Moonlight.mp3 │ └── Scrape.wav ├── Sprites.atlas │ ├── Croissant-Highlighted.png │ ├── Croissant-Highlighted@2x.png │ ├── Croissant-Highlighted@3x.png │ ├── Croissant.png │ ├── Croissant@2x.png │ ├── Croissant@3x.png │ ├── Cupcake-Highlighted.png │ ├── Cupcake-Highlighted@2x.png │ ├── Cupcake-Highlighted@3x.png │ ├── Cupcake.png │ ├── Cupcake@2x.png │ ├── Cupcake@3x.png │ ├── Danish-Highlighted.png │ ├── Danish-Highlighted@2x.png │ ├── Danish-Highlighted@3x.png │ ├── Danish.png │ ├── Danish@2x.png │ ├── Danish@3x.png │ ├── Donut-Highlighted.png │ ├── Donut-Highlighted@2x.png │ ├── Donut-Highlighted@3x.png │ ├── Donut.png │ ├── Donut@2x.png │ ├── Donut@3x.png │ ├── Macaroon-Highlighted.png │ ├── Macaroon-Highlighted@2x.png │ ├── Macaroon-Highlighted@3x.png │ ├── Macaroon.png │ ├── Macaroon@2x.png │ ├── Macaroon@3x.png │ ├── SugarCookie-Highlighted.png │ ├── SugarCookie-Highlighted@2x.png │ ├── SugarCookie-Highlighted@3x.png │ ├── SugarCookie.png │ ├── SugarCookie@2x.png │ ├── SugarCookie@3x.png │ ├── Tile.png │ ├── Tile@2x.png │ └── Tile@3x.png ├── Swap.swift └── Tile.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/.gitignore -------------------------------------------------------------------------------- /Match3 Game.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Match3 Game.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Match3 Game.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Match3 Game.xcodeproj/project.xcworkspace/xcuserdata/serhiyyashchuk.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game.xcodeproj/project.xcworkspace/xcuserdata/serhiyyashchuk.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /Match3 Game.xcodeproj/xcshareddata/xcschemes/Match3 Game.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game.xcodeproj/xcshareddata/xcschemes/Match3 Game.xcscheme -------------------------------------------------------------------------------- /Match3 Game.xcodeproj/xcuserdata/serhiyyashchuk.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game.xcodeproj/xcuserdata/serhiyyashchuk.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Match3 Game.xcodeproj/xcuserdata/serhiyyashchuk.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game.xcodeproj/xcuserdata/serhiyyashchuk.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Match3 Game/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/AppDelegate.swift -------------------------------------------------------------------------------- /Match3 Game/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Match3 Game/Assets.xcassets/Background.imageset/Background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Assets.xcassets/Background.imageset/Background@3x.png -------------------------------------------------------------------------------- /Match3 Game/Assets.xcassets/Background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Assets.xcassets/Background.imageset/Contents.json -------------------------------------------------------------------------------- /Match3 Game/Assets.xcassets/Button.imageset/Button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Assets.xcassets/Button.imageset/Button@3x.png -------------------------------------------------------------------------------- /Match3 Game/Assets.xcassets/Button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Assets.xcassets/Button.imageset/Contents.json -------------------------------------------------------------------------------- /Match3 Game/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Match3 Game/Assets.xcassets/GameOver.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Assets.xcassets/GameOver.imageset/Contents.json -------------------------------------------------------------------------------- /Match3 Game/Assets.xcassets/GameOver.imageset/GameOver@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Assets.xcassets/GameOver.imageset/GameOver@3x.png -------------------------------------------------------------------------------- /Match3 Game/Assets.xcassets/LevelComplete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Assets.xcassets/LevelComplete.imageset/Contents.json -------------------------------------------------------------------------------- /Match3 Game/Assets.xcassets/LevelComplete.imageset/LevelComplete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Assets.xcassets/LevelComplete.imageset/LevelComplete@3x.png -------------------------------------------------------------------------------- /Match3 Game/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Match3 Game/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Match3 Game/Chain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Chain.swift -------------------------------------------------------------------------------- /Match3 Game/Cookie.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Cookie.swift -------------------------------------------------------------------------------- /Match3 Game/GameScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/GameScene.swift -------------------------------------------------------------------------------- /Match3 Game/GameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/GameViewController.swift -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/MaskTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/MaskTile.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/MaskTile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/MaskTile@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/MaskTile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/MaskTile@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_1.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_10.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_10@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_10@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_11.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_11@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_11@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_11@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_12.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_12@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_12@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_12@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_13.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_13@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_13@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_13@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_14.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_14@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_14@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_14@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_15.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_15@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_15@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_15@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_1@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_1@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_2.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_2@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_2@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_3.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_3@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_3@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_4.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_4@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_4@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_5.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_5@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_5@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_7.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_7@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_7@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_8.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_8@2x.png -------------------------------------------------------------------------------- /Match3 Game/Grid.atlas/Tile_8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid.atlas/Tile_8@3x.png -------------------------------------------------------------------------------- /Match3 Game/Grid2D.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Grid2D.swift -------------------------------------------------------------------------------- /Match3 Game/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Info.plist -------------------------------------------------------------------------------- /Match3 Game/Level.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Level.swift -------------------------------------------------------------------------------- /Match3 Game/LevelData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/LevelData.swift -------------------------------------------------------------------------------- /Match3 Game/Levels/Level_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Levels/Level_0.json -------------------------------------------------------------------------------- /Match3 Game/Levels/Level_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Levels/Level_1.json -------------------------------------------------------------------------------- /Match3 Game/Levels/Level_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Levels/Level_2.json -------------------------------------------------------------------------------- /Match3 Game/Levels/Level_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Levels/Level_3.json -------------------------------------------------------------------------------- /Match3 Game/Levels/Level_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Levels/Level_4.json -------------------------------------------------------------------------------- /Match3 Game/Sounds/Chomp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sounds/Chomp.wav -------------------------------------------------------------------------------- /Match3 Game/Sounds/Drip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sounds/Drip.wav -------------------------------------------------------------------------------- /Match3 Game/Sounds/Error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sounds/Error.wav -------------------------------------------------------------------------------- /Match3 Game/Sounds/Ka-Ching.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sounds/Ka-Ching.wav -------------------------------------------------------------------------------- /Match3 Game/Sounds/Mining by Moonlight.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sounds/Mining by Moonlight.mp3 -------------------------------------------------------------------------------- /Match3 Game/Sounds/Scrape.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sounds/Scrape.wav -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Croissant-Highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Croissant-Highlighted.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Croissant-Highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Croissant-Highlighted@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Croissant-Highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Croissant-Highlighted@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Croissant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Croissant.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Croissant@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Croissant@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Croissant@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Croissant@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Cupcake-Highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Cupcake-Highlighted.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Cupcake-Highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Cupcake-Highlighted@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Cupcake-Highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Cupcake-Highlighted@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Cupcake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Cupcake.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Cupcake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Cupcake@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Cupcake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Cupcake@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Danish-Highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Danish-Highlighted.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Danish-Highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Danish-Highlighted@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Danish-Highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Danish-Highlighted@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Danish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Danish.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Danish@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Danish@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Danish@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Danish@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Donut-Highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Donut-Highlighted.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Donut-Highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Donut-Highlighted@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Donut-Highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Donut-Highlighted@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Donut.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Donut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Donut@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Donut@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Donut@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Macaroon-Highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Macaroon-Highlighted.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Macaroon-Highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Macaroon-Highlighted@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Macaroon-Highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Macaroon-Highlighted@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Macaroon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Macaroon.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Macaroon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Macaroon@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Macaroon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Macaroon@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/SugarCookie-Highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/SugarCookie-Highlighted.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/SugarCookie-Highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/SugarCookie-Highlighted@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/SugarCookie-Highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/SugarCookie-Highlighted@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/SugarCookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/SugarCookie.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/SugarCookie@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/SugarCookie@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/SugarCookie@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/SugarCookie@3x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Tile.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Tile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Tile@2x.png -------------------------------------------------------------------------------- /Match3 Game/Sprites.atlas/Tile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Sprites.atlas/Tile@3x.png -------------------------------------------------------------------------------- /Match3 Game/Swap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Swap.swift -------------------------------------------------------------------------------- /Match3 Game/Tile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/Match3 Game/Tile.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerG-Y/iOS-Match3-Game/HEAD/README.md --------------------------------------------------------------------------------