diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -12,3 +12,30 @@ code is mainly extracted from https://github.com/jeremyz/rustanddust - various animations - path, movement, line of sight computation +## install + +Add the repository: +```groovy + allprojects { + repositories { + maven { url 'https://jitpack.io' } + } + } +``` +Add the dependency to all subprojects: (You can replace `master-SNAPSHOT` with a tag from github) +```groovy + dependencies { + implementation 'com.github.jeremyz:gdx-boardgame:master-SNAPSHOT' + } +``` +If you use the html module, you have to add also this module to its dependencies: +```groovy + dependencies { + implementation 'com.github.jeremyz:gdx-boardgame:master-SNAPSHOT:sources' + } +``` + +For the html build, you have to add this line to your *.gwt.xml files in the html project: +```xml +<inherits name='ch.asynk.gdx.boardgame'/> +``` |