mirror of
https://github.com/Minestom/Minestom.git
synced 2025-01-02 14:38:26 +01:00
Inline EffectPacket
This commit is contained in:
parent
d3d809f714
commit
ebd17fdf81
@ -3,20 +3,25 @@ package net.minestom.server.registry;
|
||||
import net.kyori.adventure.key.Key;
|
||||
import net.kyori.adventure.key.Keyed;
|
||||
import net.minestom.server.utils.NamespaceID;
|
||||
import org.jetbrains.annotations.Contract;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
public interface ProtocolObject extends Keyed {
|
||||
|
||||
@Contract(pure = true)
|
||||
@NotNull NamespaceID namespace();
|
||||
|
||||
@Override
|
||||
@Contract(pure = true)
|
||||
default @NotNull Key key() {
|
||||
return namespace();
|
||||
}
|
||||
|
||||
@Contract(pure = true)
|
||||
default @NotNull String name() {
|
||||
return namespace().asString();
|
||||
}
|
||||
|
||||
@Contract(pure = true)
|
||||
int id();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user