Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 510 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 510 Bytes

Board Game Library For Java

bglfj is a Java library for the components (cards, dice, pieces, boards, etc.) used in the board game, player of game and the game.

  • requires JDK 1.8 or higher.

Adding to your build

To add a dependency using maven :

<dependency>
    <groupId>io.github.eatnuh</groupId>
    <artifactId>bglfj</artifactId>
    <version>1.3</version>
</dependency>

To add a dependency using gradle :

dependencies {
    implementation 'io.github.eatnuh:bglfj:1.3' 
}