├── .gitignore ├── LICENSE ├── README.md ├── android ├── AndroidManifest.xml ├── assets │ ├── background.png │ ├── fun_in_a_bottle.mp3 │ ├── ground.png │ ├── hit.wav │ ├── jump.wav │ ├── roboto_bold.ttf │ ├── sprites.png │ └── sprites.txt ├── build.gradle ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── values │ │ ├── .gitignore │ │ ├── strings.xml │ │ └── styles.xml │ └── xml │ │ └── app_tracker_config.xml └── src │ └── com │ ├── gamestudio24 │ └── martianrun │ │ ├── MainApplication.java │ │ └── android │ │ └── AndroidLauncher.java │ └── google │ └── games │ └── basegameutils │ ├── GameHelper.java │ └── GameHelperUtils.java ├── core ├── build.gradle └── src │ ├── MartianRun.gwt.xml │ └── com │ └── gamestudio24 │ └── martianrun │ ├── MartianRun.java │ ├── actors │ ├── Background.java │ ├── Enemy.java │ ├── GameActor.java │ ├── Ground.java │ ├── Runner.java │ ├── Score.java │ └── menu │ │ ├── AboutButton.java │ │ ├── AboutLabel.java │ │ ├── AchievementsButton.java │ │ ├── GameButton.java │ │ ├── GameLabel.java │ │ ├── LeaderboardButton.java │ │ ├── MusicButton.java │ │ ├── PauseButton.java │ │ ├── PausedLabel.java │ │ ├── ShareButton.java │ │ ├── SoundButton.java │ │ ├── StartButton.java │ │ └── Tutorial.java │ ├── box2d │ ├── EnemyUserData.java │ ├── GroundUserData.java │ ├── RunnerUserData.java │ └── UserData.java │ ├── enums │ ├── Difficulty.java │ ├── EnemyType.java │ ├── GameState.java │ └── UserDataType.java │ ├── screens │ └── GameScreen.java │ ├── stages │ └── GameStage.java │ └── utils │ ├── AssetsManager.java │ ├── AudioUtils.java │ ├── BodyUtils.java │ ├── Constants.java │ ├── GameEventListener.java │ ├── GameManager.java │ ├── RandomUtils.java │ └── WorldUtils.java ├── desktop ├── build.gradle └── src │ └── com │ └── gamestudio24 │ └── martianrun │ └── desktop │ └── DesktopLauncher.java ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/README.md -------------------------------------------------------------------------------- /android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/assets/background.png -------------------------------------------------------------------------------- /android/assets/fun_in_a_bottle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/assets/fun_in_a_bottle.mp3 -------------------------------------------------------------------------------- /android/assets/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/assets/ground.png -------------------------------------------------------------------------------- /android/assets/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/assets/hit.wav -------------------------------------------------------------------------------- /android/assets/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/assets/jump.wav -------------------------------------------------------------------------------- /android/assets/roboto_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/assets/roboto_bold.ttf -------------------------------------------------------------------------------- /android/assets/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/assets/sprites.png -------------------------------------------------------------------------------- /android/assets/sprites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/assets/sprites.txt -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/proguard-project.txt -------------------------------------------------------------------------------- /android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/project.properties -------------------------------------------------------------------------------- /android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/values/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/res/values/.gitignore -------------------------------------------------------------------------------- /android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/res/values/strings.xml -------------------------------------------------------------------------------- /android/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/res/values/styles.xml -------------------------------------------------------------------------------- /android/res/xml/app_tracker_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/res/xml/app_tracker_config.xml -------------------------------------------------------------------------------- /android/src/com/gamestudio24/martianrun/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/src/com/gamestudio24/martianrun/MainApplication.java -------------------------------------------------------------------------------- /android/src/com/gamestudio24/martianrun/android/AndroidLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/src/com/gamestudio24/martianrun/android/AndroidLauncher.java -------------------------------------------------------------------------------- /android/src/com/google/games/basegameutils/GameHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/src/com/google/games/basegameutils/GameHelper.java -------------------------------------------------------------------------------- /android/src/com/google/games/basegameutils/GameHelperUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/android/src/com/google/games/basegameutils/GameHelperUtils.java -------------------------------------------------------------------------------- /core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/build.gradle -------------------------------------------------------------------------------- /core/src/MartianRun.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/MartianRun.gwt.xml -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/MartianRun.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/MartianRun.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/Background.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/Background.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/Enemy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/Enemy.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/GameActor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/GameActor.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/Ground.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/Ground.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/Runner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/Runner.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/Score.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/Score.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/AboutButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/AboutButton.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/AboutLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/AboutLabel.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/AchievementsButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/AchievementsButton.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/GameButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/GameButton.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/GameLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/GameLabel.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/LeaderboardButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/LeaderboardButton.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/MusicButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/MusicButton.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/PauseButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/PauseButton.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/PausedLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/PausedLabel.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/ShareButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/ShareButton.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/SoundButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/SoundButton.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/StartButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/StartButton.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/actors/menu/Tutorial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/actors/menu/Tutorial.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/box2d/EnemyUserData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/box2d/EnemyUserData.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/box2d/GroundUserData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/box2d/GroundUserData.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/box2d/RunnerUserData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/box2d/RunnerUserData.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/box2d/UserData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/box2d/UserData.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/enums/Difficulty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/enums/Difficulty.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/enums/EnemyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/enums/EnemyType.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/enums/GameState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/enums/GameState.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/enums/UserDataType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/enums/UserDataType.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/screens/GameScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/screens/GameScreen.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/stages/GameStage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/stages/GameStage.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/utils/AssetsManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/utils/AssetsManager.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/utils/AudioUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/utils/AudioUtils.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/utils/BodyUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/utils/BodyUtils.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/utils/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/utils/Constants.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/utils/GameEventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/utils/GameEventListener.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/utils/GameManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/utils/GameManager.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/utils/RandomUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/utils/RandomUtils.java -------------------------------------------------------------------------------- /core/src/com/gamestudio24/martianrun/utils/WorldUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/core/src/com/gamestudio24/martianrun/utils/WorldUtils.java -------------------------------------------------------------------------------- /desktop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/desktop/build.gradle -------------------------------------------------------------------------------- /desktop/src/com/gamestudio24/martianrun/desktop/DesktopLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/desktop/src/com/gamestudio24/martianrun/desktop/DesktopLauncher.java -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmora/martianrun/HEAD/settings.gradle --------------------------------------------------------------------------------