blob: 27aad0a11f9949c066550cfe747a58b645e46696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package gregtech.common.misc;
import java.math.BigInteger;
import java.util.HashMap;
import java.util.UUID;
public abstract class GlobalVariableStorage {
// --------------------- NEVER access these maps! Use the methods provided! ---------------------
// Global EU map.
public static HashMap<UUID, BigInteger> GlobalEnergy = new HashMap<>(100, 0.9f);
// ----------------------------------------------------------------------------------------------
}
|