This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AsciiBox { | |
private int size; | |
private Boolean fix = false; | |
private String inside = " "; | |
private String[] borders = new String[4]; | |
private String[] corners = new String[0]; |