2015-02-25 06:03:59 +01:00
|
|
|
package com.pahimar.ee3.init;
|
|
|
|
|
2015-05-07 19:45:06 +02:00
|
|
|
import com.pahimar.ee3.api.array.AlchemyArray;
|
|
|
|
import com.pahimar.ee3.api.array.AlchemyArrayRegistryProxy;
|
2016-05-18 19:53:13 +02:00
|
|
|
import com.pahimar.ee3.array.AlchemyArrayTransmutation;
|
|
|
|
|
|
|
|
public class AlchemyArrays {
|
2023-01-03 17:47:36 +01:00
|
|
|
public static final AlchemyArray transmutationAlchemyArray
|
|
|
|
= new AlchemyArrayTransmutation();
|
2015-02-25 06:03:59 +01:00
|
|
|
|
2016-05-18 19:53:13 +02:00
|
|
|
public static void registerAlchemyArrays() {
|
2015-03-11 21:34:37 +01:00
|
|
|
AlchemyArrayRegistryProxy.registerAlchemyArray(transmutationAlchemyArray);
|
2015-02-25 06:03:59 +01:00
|
|
|
}
|
|
|
|
}
|