diff options
| author | ilotterytea <iltsu@alright.party> | 2024-11-04 00:22:01 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-11-04 00:22:01 +0500 |
| commit | 9bf5ba5eb98fa83efada8555d05f9add74a437a0 (patch) | |
| tree | da3d2a3504784ce24e086d35446d48af1d3bc674 /core/src/kz/ilotterytea/maxon/screens | |
| parent | c43cf4c902c10637f0bf92e2de64028a5165f12c (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.java | 5 |
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); } |
