Add basic game interactions.
Some checks are pending
test / test (push) Waiting to run

This commit is contained in:
Sebastian Bugge 2025-04-27 17:02:57 +02:00
commit 842ef0413b
Signed by: kaholaz
GPG key ID: 2EFFEDEE03519691
7 changed files with 295 additions and 0 deletions

24
README.md Normal file
View file

@ -0,0 +1,24 @@
# minesweeper_engine
[![Package Version](https://img.shields.io/hexpm/v/minesweeper_engine)](https://hex.pm/packages/minesweeper_engine)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/minesweeper_engine/)
```sh
gleam add minesweeper_engine@1
```
```gleam
import minesweeper_engine
pub fn main() -> Nil {
// TODO: An example of the project in use
}
```
Further documentation can be found at <https://hexdocs.pm/minesweeper_engine>.
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
```