blob: 33abc66f1353c97116807fadb94087a769ed4f42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package gregtech.common.misc;
import java.math.BigInteger;
import java.util.HashMap;
import java.util.UUID;
import gregtech.common.WirelessComputationPacket;
import gregtech.common.WirelessDataStore;
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);
// Global Wireless Data map
public static HashMap<UUID, WirelessComputationPacket> GlobalWirelessComputation = new HashMap<>(100, 0.9f);
// Global Wireless Data Stick map
public static HashMap<UUID, WirelessDataStore> GlobalWirelessDataSticks = new HashMap<>(100, 0.9f);
// ----------------------------------------------------------------------------------------------
}
|