Merge develop into main #1

Merged
Sadra3st merged 23 commits from develop into main 2026-05-21 20:43:16 +00:00
Showing only changes of commit 07fd0bad33 - Show all commits
@@ -1,15 +1,11 @@
package org.project;
import org.project.location.Location;
import java.util.ArrayList;
import java.util.List;
public class Main {
public static void main(String[] args) {
// TODO: ADD LOCATIONS TO YOUR GAME
List<Location> locations = new ArrayList<>();
// TODO: IMPLEMENT GAMEPLAY
GameLoop game = new GameLoop();
game.start();
}
}