feat: ajout getters

This commit is contained in:
2025-11-07 18:13:50 +01:00
parent 9c0c57e09a
commit 5bbca6047d
4 changed files with 25 additions and 25 deletions

View File

@@ -7,6 +7,7 @@ public class Game
private Map map;
private ArrayList<GObserver> obs;
private final int time = 1000;
public static class Builder
{
@@ -122,7 +123,7 @@ public class Game
try
{
step();
Thread.sleep(1000);
Thread.sleep(time);
}
catch (InterruptedException e)
{ e.printStackTrace(); }