chore: I hate my life

This commit is contained in:
2025-03-14 18:07:01 +01:00
parent 8d1414dae0
commit d1a08eccf7

View File

@ -0,0 +1,14 @@
package cz.jzitnik.game.ui;
import org.jline.terminal.Terminal;
import cz.jzitnik.game.sprites.ui.Font;
public class Escape {
public static void render(StringBuilder buffer, Terminal terminal) {
Font font = new Font();
String character = font.getChar('W');
buffer.append(character);
}
}