added tabulation modding methods to Menu

This commit is contained in:
Kjistóf 2016-03-28 22:56:21 +02:00
parent bc314d466a
commit 1c5391422a
1 changed files with 11 additions and 0 deletions

View File

@ -4,6 +4,17 @@ import java.io.IOException;
public class Menu {
public static String tabulator = "\t";
public static void addTab()
{
tabulator += '\t';
}
public static void removeTab()
{
tabulator = tabulator.substring(0, tabulator.length()-1);
}
public static void main (String[] args) throws IOException{
System.out.println("Continuously Integrated Cica Projekt - Skeleton");
System.out.println("Üdvözöllek a Babylon Simulator 2000 játékban! Kérlek válassz egy menüpontot!");