Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dart-lang/sample-pop_pop_win
"Pop, Pop, Win!" is an implementation of Minesweeper in Dart.
https://github.com/dart-lang/sample-pop_pop_win
dart game games-2d
Last synced: 1 day ago
JSON representation
"Pop, Pop, Win!" is an implementation of Minesweeper in Dart.
- Host: GitHub
- URL: https://github.com/dart-lang/sample-pop_pop_win
- Owner: dart-lang
- License: bsd-3-clause
- Created: 2012-10-08T00:24:56.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-12-03T17:33:29.000Z (about 2 months ago)
- Last Synced: 2025-01-10T18:14:47.785Z (9 days ago)
- Topics: dart, game, games-2d
- Language: Dart
- Homepage: https://dart-lang.github.io/sample-pop_pop_win/
- Size: 91.6 MB
- Stars: 149
- Watchers: 44
- Forks: 58
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-open-source-games - Pop Pop Win - Implementation of Minesweeper in Dart. (Browser-Based / Puzzle)
README
An implementation of
Minesweeper
in [Dart](https://dart.dev/).## Interaction
* Click on hidden squares to reveal them.
* Shift-click on squares to flag them.
* Shift-click on revealed numbers to go fast--but be careful. If you've flagged
incorrectly, you'll hit a bomb.## Assets
* Art - Pete Parisi, [fuzzycube software](http://fuzzycubesoftware.com/)
* Sound Effects - Alistair Hirst,
[OMNI Audio](https://www.linkedin.com/in/alistairhirst/)
* Winning Sax Riff - Brian Moore## Running and building
* Clone the repository.
* Run `pub get`.
* To run locally with [dartdevc](https://dart.dev/tools/dartdevc):
```console
$ pub run build_runner serve
```* To build with [dart2js](https://dart.dev/tools/dart2js) and minified output:
```console
$ pub run build_runner build --release --output web:build
```