All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.legrange.console.Text Maven / Gradle / Ivy

The newest version!
package me.legrange.console;

final class Text extends Animator {

    private final String text;
    Text(String text) {
        this.text = text;
    }

    @Override
    String draw(N min, N max, N value) {
        return text;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy