示例#1
0
 private void erasePrompt() {
   console.clearRow(this.pageHeight);
 }
示例#2
0
 private void prompt(String text) {
   console.clearRow(this.pageHeight);
   console.setChar(0, this.pageHeight, text.toCharArray(), DEFAULT_COLOR);
   console.setCursor(0, this.pageHeight);
 }