refactor StringIdentifiable and Logger

This commit is contained in:
dfsek
2021-09-24 07:57:49 -07:00
parent 016fbaf468
commit c35d1acbbf
16 changed files with 16 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
package com.dfsek.terra.api.util;
public interface Logger {
void info(String message);
void warning(String message);
void severe(String message);
default void stack(Throwable t) {
t.printStackTrace();
}
}

View File

@@ -0,0 +1,5 @@
package com.dfsek.terra.api.util;
public interface StringIdentifiable {
String getID();
}