Registry Modification API

This commit is contained in:
Jake Potrebic
2022-03-02 13:36:21 -08:00
parent ada45eba8a
commit 146cd1a015
20 changed files with 739 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package io.papermc.paper.registry;
import org.jetbrains.annotations.ApiStatus;
import org.jspecify.annotations.NullMarked;
/**
* To be implemented by any type used for modifying registries.
*
* @param <T> registry value type
*/
@ApiStatus.Experimental
@NullMarked
@ApiStatus.NonExtendable
public interface RegistryBuilder<T> {
}