https://github.com/moverest/netpongterm
A pong game... but it works on the network to extend on multiple screens.
https://github.com/moverest/netpongterm
Last synced: 5 months ago
JSON representation
A pong game... but it works on the network to extend on multiple screens.
- Host: GitHub
- URL: https://github.com/moverest/netpongterm
- Owner: moverest
- License: mit
- Created: 2018-08-15T17:26:00.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-19T15:34:52.000Z (almost 8 years ago)
- Last Synced: 2024-06-20T19:15:25.748Z (almost 2 years ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NetPongTerm
NetPongTerm is a pong game that extends on multiple screen on multiple computer trough the network. You can watch a demo [here](https://youtu.be/lIkU9vaCdmQ).
## Usage
First, start the server:
```bash
netpongterm -mode=server
```
Then each clients from left to right. You can specify the server address with the `-server` parameter.
```bash
netpongterm
```
For the last client, add the `-last-client` option:
```bash
netpongterm -last-client
```
## Installation
To install this game, run:
```
go get github.com/moverest/netpongterm
go install github.com/moverest/netpongterm
```
You'll need the `go` compiler installed.