added tabulation modding methods to Menu
This commit is contained in:
parent
bc314d466a
commit
1c5391422a
@ -4,6 +4,17 @@ import java.io.IOException;
|
|||||||
|
|
||||||
public class Menu {
|
public class Menu {
|
||||||
public static String tabulator = "\t";
|
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{
|
public static void main (String[] args) throws IOException{
|
||||||
System.out.println("Continuously Integrated Cica Projekt - Skeleton");
|
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!");
|
System.out.println("Üdvözöllek a Babylon Simulator 2000 játékban! Kérlek válassz egy menüpontot!");
|
||||||
|
Loading…
Reference in New Issue
Block a user