summaryrefslogtreecommitdiff
path: root/core/src/kz/ilotterytea/maxon/screens
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-11-04 00:22:01 +0500
committerilotterytea <iltsu@alright.party>2024-11-04 00:22:01 +0500
commit9bf5ba5eb98fa83efada8555d05f9add74a437a0 (patch)
treeda3d2a3504784ce24e086d35446d48af1d3bc674 /core/src/kz/ilotterytea/maxon/screens
parentc43cf4c902c10637f0bf92e2de64028a5165f12c (diff)
upd: mentioned testers and moral supporter
Diffstat (limited to 'core/src/kz/ilotterytea/maxon/screens')
-rw-r--r--core/src/kz/ilotterytea/maxon/screens/SplashScreen.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/src/kz/ilotterytea/maxon/screens/SplashScreen.java b/core/src/kz/ilotterytea/maxon/screens/SplashScreen.java
index 7b7fd02..c036f78 100644
--- a/core/src/kz/ilotterytea/maxon/screens/SplashScreen.java
+++ b/core/src/kz/ilotterytea/maxon/screens/SplashScreen.java
@@ -10,6 +10,7 @@ import com.badlogic.gdx.scenes.scene2d.ui.*;
import com.badlogic.gdx.scenes.scene2d.utils.Drawable;
import com.badlogic.gdx.utils.Align;
import com.badlogic.gdx.utils.viewport.*;
+import kz.ilotterytea.javaextra.tuples.Triple;
import kz.ilotterytea.maxon.MaxonConstants;
import kz.ilotterytea.maxon.assets.AssetUtils;
import kz.ilotterytea.maxon.MaxonGame;
@@ -68,8 +69,8 @@ public class SplashScreen implements Screen {
ArrayList<Drawable> contributors = new ArrayList<>();
contributorSkin = new Skin(Gdx.files.internal("sprites/gui/friends.skin"));
- for (int i = 0; i < MaxonConstants.GAME_DEVELOPERS.length; i++) {
- String name = MaxonConstants.GAME_DEVELOPERS[i][0];
+ for (Triple<String, String, Integer> contributor : MaxonConstants.GAME_DEVELOPERS) {
+ String name = contributor.getFirst();
Drawable icon = contributorSkin.getDrawable(name);
contributors.add(icon);
}