2025-05-10 13:12:46 +02:00
|
|
|
package it.arnaldo.unibs.tamagolem;
|
2025-05-12 19:12:33 +02:00
|
|
|
|
2025-05-10 13:12:46 +02:00
|
|
|
import java.util.*;
|
2025-05-12 19:12:33 +02:00
|
|
|
|
2025-05-10 13:12:46 +02:00
|
|
|
public class TamaGolemMain {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
System.out.println("TamaGolem");
|
2025-05-12 19:12:33 +02:00
|
|
|
|
2025-05-13 17:02:45 +02:00
|
|
|
Game game = new Game(new Player("Zazz"), new Player("zazz2"), WorldBuilder.buildWorld());
|
|
|
|
|
|
|
|
game.start();
|
2025-05-10 13:12:46 +02:00
|
|
|
}
|
|
|
|
}
|