Update to v0.7
This commit is contained in:
parent
ea2ddb8554
commit
8199924808
4 changed files with 4 additions and 6 deletions
|
@ -22,8 +22,8 @@ android {
|
||||||
minSdkVersion 8
|
minSdkVersion 8
|
||||||
targetSdkVersion 25
|
targetSdkVersion 25
|
||||||
|
|
||||||
versionCode 610
|
versionCode 700
|
||||||
versionName "0.6.1"
|
versionName "0.7"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ allprojects {
|
||||||
apply plugin: "eclipse"
|
apply plugin: "eclipse"
|
||||||
apply plugin: "idea"
|
apply plugin: "idea"
|
||||||
|
|
||||||
version = '0.6.1'
|
version = '0.7'
|
||||||
ext {
|
ext {
|
||||||
appName = "1010! Klooni"
|
appName = "1010! Klooni"
|
||||||
gdxVersion = '1.9.5'
|
gdxVersion = '1.9.5'
|
||||||
|
|
|
@ -67,7 +67,6 @@ public class Effect {
|
||||||
//region Static methods
|
//region Static methods
|
||||||
|
|
||||||
public static Effect[] getEffects() {
|
public static Effect[] getEffects() {
|
||||||
// TODO Load effects
|
|
||||||
return new Effect[] {
|
return new Effect[] {
|
||||||
new Effect("vanish"),
|
new Effect("vanish"),
|
||||||
new Effect("waterdrop"),
|
new Effect("waterdrop"),
|
||||||
|
|
|
@ -77,9 +77,8 @@ public class MoneyBuyBand extends Table {
|
||||||
confirmButton.addListener(new ChangeListener() {
|
confirmButton.addListener(new ChangeListener() {
|
||||||
@Override
|
@Override
|
||||||
public void changed(ChangeEvent event, Actor actor) {
|
public void changed(ChangeEvent event, Actor actor) {
|
||||||
if (toBuy != null) {
|
if (toBuy != null)
|
||||||
toBuy.performBuy();
|
toBuy.performBuy();
|
||||||
}
|
|
||||||
showCurrentMoney();
|
showCurrentMoney();
|
||||||
hideBuyButtons();
|
hideBuyButtons();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue