remove unused lang stuff

This commit is contained in:
dfsek
2021-12-16 19:51:29 -07:00
parent 89c43e98b9
commit a0c46aaf7a
3 changed files with 0 additions and 127 deletions

View File

@@ -1,23 +0,0 @@
/*
* Copyright (c) 2020-2021 Polyhedral Development
*
* The Terra API is licensed under the terms of the MIT License. For more details,
* reference the LICENSE file in the common/api directory.
*/
package com.dfsek.terra.api.lang;
import java.util.logging.Level;
import java.util.logging.Logger;
import com.dfsek.terra.api.entity.CommandSender;
public interface Message {
void log(Logger logger, Level level, String... args);
void send(CommandSender sender, String... args);
boolean isEmpty();
}