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

com.codingame.gameengine.core.OutputCommand Maven / Gradle / Ivy

package com.codingame.gameengine.core;
enum OutputCommand {
    VIEW, INFOS, NEXT_PLAYER_INPUT, NEXT_PLAYER_INFO, SCORES, UINPUT, TOOLTIP, SUMMARY, METADATA, FAIL;
    public String format(int lineCount) {
        return String.format("[[%s] %d]", this.name(), lineCount);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy