-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
udhos
committed
Sep 9, 2017
1 parent
e94be0d
commit f21ce2c
Showing
6 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# fugo invader release | ||
|
||
Home: https://github.com/udhos/fugo | ||
|
||
$ tar xf fugo-invader.tar.gz | ||
$ cd fugo-invader | ||
|
||
arena: server | ||
invader: Binary for desktop Linux | ||
invader.apk: Package for Android | ||
|
||
Run the server: | ||
$ arena | ||
|
||
Run the desktop Linux client: | ||
$ invader | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
dir=fugo-invader-0.0 | ||
|
||
mkdir $dir | ||
|
||
cp ~/go/bin/invader $dir | ||
cp ~/go/bin/arena $dir | ||
cp -a demo/invader/assets $dir | ||
cp invader.apk $dir | ||
cp RELEASE.md $dir | ||
|
||
tar czf $dir.tar.gz $dir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
package version | ||
|
||
const Version = "0.0" |