15 lines
357 B
Java
15 lines
357 B
Java
package com.pahimar.ee3.emc;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
|
|
import com.pahimar.ee3.item.CustomWrappedStack;
|
|
|
|
public class EmcDefaultValues {
|
|
|
|
private static HashMap<CustomWrappedStack, List<CustomWrappedStack>> defaultEmcValues = new HashMap<CustomWrappedStack, List<CustomWrappedStack>>();
|
|
|
|
public static void init() {
|
|
|
|
}
|
|
}
|