All of it.

This commit is contained in:
Jacob Signorovitch
2025-04-24 15:00:45 -04:00
parent 187b0bf570
commit 64a3f07d4a
5 changed files with 34 additions and 3 deletions

View File

@@ -1,6 +1,12 @@
package chess;
class Game {
import javalib.impworld.*;
class Game extends World {
Actor white;
Actor black;
public WorldScene makeScene() { return new WorldScene(0, 0); }
void run() { this.bigBang(0, 0, 0.01); }
}