Implement basic game design and weapons. Add menu and inventory(shop)

This commit is contained in:
2026-05-07 14:27:11 +03:30
parent 78d4bedb08
commit b992ba5e38
43 changed files with 899 additions and 88 deletions
@@ -1,15 +1,8 @@
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
private Menu menu = new Menu();
public void main() {
menu.start();
}
}