TagHandler in beta until a proper name is decided

This commit is contained in:
TheMode 2021-05-17 21:11:52 +02:00
parent 7e5940d1a5
commit 1f30e2af77

View File

@ -1,7 +1,10 @@
package net.minestom.server.tag;
import com.google.common.annotations.Beta;
/**
* Represents an element which can read and write {@link Tag tags}.
*/
@Beta
public interface TagHandler extends TagReadable, TagWritable {
}