10 lines
322 B
Java
10 lines
322 B
Java
package ru.betterend.registry;
|
|
|
|
import ru.betterend.world.features.EndFeature;
|
|
import ru.betterend.world.features.StoneSpiralFeature;
|
|
|
|
public class FeatureRegistry {
|
|
public static final EndFeature STONE_SPIRAL = new EndFeature("stone_spiral", new StoneSpiralFeature(), 2);
|
|
|
|
public static void register() {}
|
|
}
|