auto-commit

This commit is contained in:
2025-09-19 08:13:07 +08:00
parent bc144d7929
commit d1bcab99c0
11 changed files with 85 additions and 57 deletions

View File

@@ -13,7 +13,7 @@ public class GameCore implements ApplicationListener {
@Override
public void create() {
batch = new SpriteBatch();
img = new Texture(Gdx.files.internal("badlogic.jpg"));
img = new Texture(Gdx.files.internal(""));
}
@Override

View File

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

View File

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