Skip to content

Commit

Permalink
Main Class of Tekken
Browse files Browse the repository at this point in the history
  • Loading branch information
Nike2000 committed Oct 20, 2020
1 parent e9a3b18 commit 810c3e3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tekken/Tekken.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package tekken;

public class Tekken {

//main method
public static void main(String[] args) {
//objects
MainScreen m = new MainScreen();
//Character chr = new Character();

//method call
m.start();
m.GameModes();
m.ModeSelect();
}
}

0 comments on commit 810c3e3

Please sign in to comment.