TEST ASCII

This commit is contained in:
rubenpirreram
2026-05-03 16:03:11 +02:00
parent 2148dc3a09
commit 6afbc4493b
@@ -1,9 +1,11 @@
package it.polimi.ingsw.gc14.View.TUI;
public enum BorderStyle {
UNICODE("","","","","","","","","","","","","","",""),
ASCII ("+","+","+","+","-","|","+","+","+","+","+","+","+","-","+"),
ROUNDED("","","","","","","","","","","","","","","");
//UNICODE("╔","╗","╚","╝","═","║","╠","╣","╦","╩","╬","├","┤","─","┼"),
UNICODE ("+","+","+","+","-","|","+","+","+","+","+","+","+","-","+"),
ROUNDED ("+","+","+","+","-","|","+","+","+","+","+","+","+","-","+");
//ROUNDED("╭","╮","╰","╯","─","│","├","┤","┬","┴","┼","├","┤","─","┼");
private final String tl,tr,bl,br,h,v,ml,mr,mt,mb,x,sl,sr,sh,sx;