13 lines
493 B
Java
13 lines
493 B
Java
|
|
package com.alttd.easter.util;
|
||
|
|
|
||
|
|
import com.alttd.easter.Easter;
|
||
|
|
import org.bukkit.NamespacedKey;
|
||
|
|
|
||
|
|
public final class Keys {
|
||
|
|
public static final NamespacedKey EGG_ITEM = new NamespacedKey(Easter.getPlugin(Easter.class), "egg-item");
|
||
|
|
public static final NamespacedKey EGG_ENTITY = new NamespacedKey(Easter.getPlugin(Easter.class), "egg-entity");
|
||
|
|
public static final NamespacedKey RABBIT_NPC = new NamespacedKey(Easter.getPlugin(Easter.class), "rabbit-npc");
|
||
|
|
|
||
|
|
private Keys() {}
|
||
|
|
}
|