net.minestom.server.gamedata.DataPackImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.gamedata;
import net.minestom.server.utils.NamespaceID;
import org.jetbrains.annotations.NotNull;
record DataPackImpl(@NotNull NamespaceID namespaceId, boolean isSynced) implements DataPack {
@Override
public boolean isSynced() {
return false;
}
}