Merge remote-tracking branch 'origin/master'

# Conflicts:
#	pom.xml
#	src/main/java/uno/mloluyu/desktop/GameCore.java
This commit is contained in:
2025-09-19 09:42:58 +08:00
11 changed files with 95 additions and 61 deletions

View File

@@ -15,3 +15,4 @@ public class Launcher {
new Lwjgl3Application(new GameCore(), configuration);
}
}

View File

@@ -0,0 +1,11 @@
package uno.mloluyu.desktop.character;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.Sprite;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
public class Alice {
private SpriteBatch batch;
private Texture texture;
private Sprite sprite;
}

View File

@@ -23,6 +23,7 @@ public class CreateServer {
public void run() {
try {
clientSocket = serverSocket.accept(null);
System.out.println("玩家连接"+clientSocket);
//连接上后在这里编写进入游戏界面的代码
} catch (Exception e) {