blob: 6581c573501ffc335e3cb311e9ed3d2f2d81485e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# gdx-boardgame
[![](https://jitpack.io/v/jeremyz/gdx-boardgame.svg)](https://jitpack.io/#jeremyz/gdx-boardgame)
is a [libgdx](https://libgdx.badlogicgames.com/) based framework to build 2D boardgames.
code is mainly extracted from https://github.com/jeremyz/rustanddust
## features
- moveable, zoomable board with tile identification on touch
- moveable, orientable pieces
- 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'/>
```
|