Mynz is an Augmented Reality game where you drop virtual mines in the real world and explode your Friends. 100% Open source, 100% Swift 🔶
Your goal is to win points by deploying traps and exploding your friends
- Everybody gets 10 mines per day. Use it wisely
- You can only get exploded one time per minutes, so if you just got exploded, you're immune for the next 60 seconds
- Wanna contribute? Awesome! Start by our Issues page to see what we wanna see in the next version.
- Something wrong? We're definitely not perfect, so create an issue here and we'll do our best to fix it as quick as possible 😄
We're using CocoaPods on our project, so if you wanna run our Xcode project, be sure to open your Terminal and run the folowing lines:
gem install cocoapods
and then:
pod install
We're also using Swiftlint to ensure our code is always the neatest and Swiftiest possible, so if you don't have it installed yet, run the following lines
brew install swiftlint
and then:
swiftlint lint
Traps are downloaded on the following circumstances:
- When app launches:
didFinishLaunchingWithOptions()
- When app goes to background:
applicationDidEnterBackground()
- When app becomes active again:
applicationDidBecomeActive()
- When user is exploded by a trap:
explodeCheck()