Fix broken links
This commit is contained in:
parent
5bedfd8d5b
commit
14bed3dba5
3 changed files with 8 additions and 2 deletions
|
@ -32,7 +32,7 @@ is different, there are no ads or in-app purchases, different sounds, etc.
|
|||
Building
|
||||
--------
|
||||
Building the project should be very straight forward:
|
||||
1. `git clone https://github.com/LonamiWeb/Klooni1010.git`.
|
||||
1. `git clone https://github.com/LonamiWebs/Klooni1010.git`.
|
||||
2. `cd Klooni1010`
|
||||
3. Now you can choose to either build for `desktop` or `android`:
|
||||
1. For desktop, use `./gradlew desktop:dist`
|
||||
|
|
|
@ -84,7 +84,7 @@ class CustomizeScreen implements Screen {
|
|||
issuesButton.addListener(new ChangeListener() {
|
||||
@Override
|
||||
public void changed(ChangeEvent event, Actor actor) {
|
||||
Gdx.net.openURI("https://github.com/LonamiWeb/Klooni1010/issues");
|
||||
Gdx.net.openURI("https://github.com/LonamiWebs/Klooni1010/issues");
|
||||
}
|
||||
});
|
||||
optionsGroup.addActor(issuesButton);
|
||||
|
|
|
@ -56,6 +56,12 @@ public class MainMenuScreen extends InputListener implements Screen {
|
|||
|
||||
// Star button (on GitHub)
|
||||
final ImageButton starButton = new SoftButton(1, "star_texture");
|
||||
starButton.addListener(new ChangeListener() {
|
||||
@Override
|
||||
public void changed(ChangeEvent event, Actor actor) {
|
||||
Gdx.net.openURI("https://github.com/LonamiWebs/Klooni1010");
|
||||
}
|
||||
});
|
||||
table.add(starButton).space(16);
|
||||
|
||||
// Stats button (high scores)
|
||||
|
|
Loading…
Reference in a new issue