Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
creeper12356 committed Aug 24, 2024
1 parent 68a78ef commit 3f2f604
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class BoardScreen extends BasicMenuScreen {
public static final int READYTALK = 12;
public static final int RETURNVSMENU = 13;
public static final int GAMEFAILED = 14;
public static final int COMMOVEDIA = 15; // 电脑移动棋子的动画
public static final int COMMOVEDIA = 15;
public static final int HOMEIN = 16; // 到达家的动画

public static final int PMSTATE_MAIN = 0;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
// package io.github.creeper12356.screen;

// /*
// * Decompiled with CFR 0.152.
// *
// * Could not load the following classes:
// * javax.microedition.lcdui.Graphics
// */

// import javax.microedition.lcdui.Graphics;

// public class MainScreen {
Expand Down
11 changes: 0 additions & 11 deletions core/src/main/java/io/github/creeper12356/utils/Utils.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,7 @@
package io.github.creeper12356.utils;
/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* javax.microedition.lcdui.Display
* javax.microedition.media.Manager
* javax.microedition.midlet.MIDlet
*/
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
// import javax.microedition.lcdui.Display;
// import javax.microedition.media.Manager;
// import javax.microedition.midlet.MIDlet;

public class Utils
{
Expand Down
3 changes: 0 additions & 3 deletions core/src/main/java/io/github/creeper12356/utils/XTimer.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
package io.github.creeper12356.utils;
/*
* Decompiled with CFR 0.152.
*/

public class XTimer
implements Runnable {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package io.github.creeper12356.utils;
/*
* Decompiled with CFR 0.152.
*/

public interface XTimerListener {
public void performed(XTimer var1);
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.github.creeper12356.lwjgl3;

import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application;
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration;
import io.github.creeper12356.MyGame;
Expand Down Expand Up @@ -29,7 +30,7 @@ private static Lwjgl3ApplicationConfiguration getDefaultConfiguration() {
//// You may also need to configure GPU drivers to fully disable Vsync; this can cause screen tearing.
configuration.setWindowedMode(240, 320);
//// You can change these files; they are in lwjgl3/src/main/resources/ .
configuration.setWindowIcon("libgdx128.png", "libgdx64.png", "libgdx32.png", "libgdx16.png");
configuration.setWindowIcon("icon.png");
return configuration;
}
}

0 comments on commit 3f2f604

Please sign in to comment.