Update README
This commit is contained in:
parent
522663becc
commit
8646e4cc39
2 changed files with 10 additions and 6 deletions
14
README.md
14
README.md
|
@ -1,25 +1,27 @@
|
|||
# bgammon - Backgammon server powering [bgammon.org](https://bgammon.org)
|
||||
[![GoDoc](https://code.rocket9labs.com/tslocum/godoc-static/raw/branch/master/badge.svg)](https://docs.rocket9labs.com/code.rocket9labs.com/tslocum/bgammon)
|
||||
[![Donate via LiberaPay](https://img.shields.io/liberapay/receives/rocket9labs.com.svg?logo=liberapay)](https://liberapay.com/rocket9labs.com)
|
||||
[![Donate via Patreon](https://img.shields.io/badge/dynamic/json?color=%23e85b46&label=Patreon&query=data.attributes.patron_count&suffix=%20patrons&url=https%3A%2F%2Fwww.patreon.com%2Fapi%2Fcampaigns%2F5252223)](https://www.patreon.com/rocketnine)
|
||||
|
||||
## Play
|
||||
|
||||
### Desktop (Boxcars)
|
||||
### Browser and Desktop
|
||||
|
||||
[**Click here to play**](https://play.bgammon.org)
|
||||
[**Click here to play**](https://play.bgammon.org) using your browser.
|
||||
|
||||
Download Boxcars at https://bgammon.org/download
|
||||
|
||||
Source code is available [here](https://code.rocket9labs.com/tslocum/boxcars).
|
||||
|
||||
### Mobile (Boxcars for Android)
|
||||
### Android
|
||||
|
||||
<a href="https://play.google.com/store/apps/details?id=com.rocket9labs.boxcars"><img width="121" height="36" alt="Google Play" border="0" src="https://rocket9labs.com/static/badge_google_36.png"></a>
|
||||
<a href="https://f-droid.org/packages/com.rocket9labs.boxcars/"><img width="121" height="36" alt="F-Droid" border="0" src="https://rocket9labs.com/static/badge_fdroid_36.png"></a>
|
||||
|
||||
Boxcars is available for Android on [Google Play](https://play.google.com/store/apps/details?id=com.rocket9labs.boxcars).
|
||||
Download Boxcars via [Google Play](https://play.google.com/store/apps/details?id=com.rocket9labs.boxcars) or [F-Droid](https://f-droid.org/packages/com.rocket9labs.boxcars/)
|
||||
|
||||
Source code is available [here](https://code.rocket9labs.com/tslocum/boxcars-android).
|
||||
|
||||
### Terminal (bgammon-cli)
|
||||
### Terminal
|
||||
|
||||
`ssh bgammon.org -p 5000`
|
||||
|
||||
|
|
2
game.go
2
game.go
|
@ -50,6 +50,8 @@ func (g *Game) Copy() *Game {
|
|||
Player1: g.Player1,
|
||||
Player2: g.Player2,
|
||||
Turn: g.Turn,
|
||||
Started: g.Started,
|
||||
Ended: g.Ended,
|
||||
Winner: g.Winner,
|
||||
Roll1: g.Roll1,
|
||||
Roll2: g.Roll2,
|
||||
|
|
Loading…
Reference in a new issue