update Transitionscreen, RewardScene & Hud

This commit is contained in:
Anthony Calosa
2022-11-22 02:15:38 +08:00
parent 75cb7d43b0
commit 14e1f42164
12 changed files with 97 additions and 43 deletions

View File

@@ -26,6 +26,7 @@ import java.io.InputStream;
import java.io.OutputStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
@@ -247,5 +248,10 @@ public class Main {
public Pair<Integer, Integer> getRealScreenSize(boolean real) {
return Pair.of(Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
}
@Override
public ArrayList<String> getGamepads() {
return new ArrayList<>();
}
}
}