12 lines
306 B
Java
12 lines
306 B
Java
package com.pahimar.ee3.array;
|
|
|
|
import com.pahimar.ee3.api.array.AlchemyArray;
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
public class AlchemyArrayEE extends AlchemyArray
|
|
{
|
|
public AlchemyArrayEE(ResourceLocation texture, String unlocalizedName)
|
|
{
|
|
super(texture, unlocalizedName);
|
|
}
|
|
}
|