Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/App.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package org.example;


public class App {


public static void main(String[] args) throws Exception {

Game game = new Game();

game.buildCity();

game.startGame();

//
// DataBase dataBase=new DataBase();
//
// dataBase.selectAll(city);
//
// Menu.showMenu();
//
// Avatar avatar1 = new Avatar("amir","1234","reza","Male",100,100,100,"Factory",1,100,0,0);
//
// DataBase.saveAvatars(city,avatar1);

}
}
Loading