Not sure what I'm doing with this quite yet

This commit is contained in:
Salmonllama 2020-07-11 13:19:53 -04:00
parent 438ab113da
commit 81a6f2985c

View File

@ -8,10 +8,10 @@ package dev.salmonllama.fsbot.logging;
import java.awt.*;
public enum ResponseType {
ERROR (Color.RED),
WARN (Color.YELLOW),
INFO (Color.BLUE),
LOG (Color.GRAY);
ERROR (Color.RED, "Error"),
WARN (Color.YELLOW, "Warning"),
INFO (Color.BLUE, "Info"),
LOG (Color.GRAY, "Log");
private Color color;
private String title;