An open API service indexing awesome lists of open source software.

https://github.com/doc94/discordminesweeperlib

Library forked from https://github.com/NurMarvin/MineSweeperBot to make Minesweeper games in discord.
https://github.com/doc94/discordminesweeperlib

discord java java-8 minesweeper minesweeper-game

Last synced: 2 months ago
JSON representation

Library forked from https://github.com/NurMarvin/MineSweeperBot to make Minesweeper games in discord.

Awesome Lists containing this project

README

          

# Discord MineSweeper Library

## Import
```xml


jitpack.io
https://jitpack.io


com.github.Doc94
DiscordMinesweeperLib
master-SNAPSHOT

```

## Use
```java
try {
int defaultDifficulty = 30;
int defaultWidht = 10;
int defaultHeight = 10;
MinesweeperBoard board = new MinesweeperBoard(defaultDifficulty,defaultWidht,defaultHeight);
String strGame = board.build(); //The game builded to use in embed description or message of discord.
} catch (MinesweeperBoardException e) {
//If the values cause any issue with the rules of the Class
}
```