Implement basic game design and weapons. Add menu and inventory(shop)
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user