├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── kylekun │ │ │ │ └── watch_bash │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── app_icon.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── lib ├── cubit │ ├── ball_cubit.dart │ ├── cubit.dart │ ├── game_cubit.dart │ ├── player_cubit.dart │ ├── score_cubit.dart │ └── stats_cubit.dart ├── game │ ├── ball.dart │ ├── ball_spawner.dart │ ├── cpu.dart │ ├── game.dart │ ├── player.dart │ ├── score_text.dart │ ├── walls.dart │ └── watch_bash_arena.dart ├── main.dart └── widgets │ ├── game_body.dart │ ├── overlays.dart │ ├── rotary_input_controller.dart │ ├── touch_input_controller.dart │ └── widgets.dart ├── media ├── logo.png └── trailer.gif ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/kylekun/watch_bash/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/kotlin/com/kylekun/watch_bash/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/res/drawable/app_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /lib/cubit/ball_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/cubit/ball_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/cubit/cubit.dart -------------------------------------------------------------------------------- /lib/cubit/game_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/cubit/game_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/player_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/cubit/player_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/score_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/cubit/score_cubit.dart -------------------------------------------------------------------------------- /lib/cubit/stats_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/cubit/stats_cubit.dart -------------------------------------------------------------------------------- /lib/game/ball.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/game/ball.dart -------------------------------------------------------------------------------- /lib/game/ball_spawner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/game/ball_spawner.dart -------------------------------------------------------------------------------- /lib/game/cpu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/game/cpu.dart -------------------------------------------------------------------------------- /lib/game/game.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/game/game.dart -------------------------------------------------------------------------------- /lib/game/player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/game/player.dart -------------------------------------------------------------------------------- /lib/game/score_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/game/score_text.dart -------------------------------------------------------------------------------- /lib/game/walls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/game/walls.dart -------------------------------------------------------------------------------- /lib/game/watch_bash_arena.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/game/watch_bash_arena.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/widgets/game_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/widgets/game_body.dart -------------------------------------------------------------------------------- /lib/widgets/overlays.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/widgets/overlays.dart -------------------------------------------------------------------------------- /lib/widgets/rotary_input_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/widgets/rotary_input_controller.dart -------------------------------------------------------------------------------- /lib/widgets/touch_input_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/widgets/touch_input_controller.dart -------------------------------------------------------------------------------- /lib/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/lib/widgets/widgets.dart -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/trailer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/media/trailer.gif -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleKun/watch_bash/HEAD/pubspec.yaml --------------------------------------------------------------------------------