mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
18 lines
345 B
Java
18 lines
345 B
Java
package com.hbm.calc;
|
|
|
|
import com.hbm.interfaces.IGasSource;
|
|
import com.hbm.interfaces.IOilSource;
|
|
|
|
public class UnionOfTileEntitiesAndBooleansForGas {
|
|
|
|
public UnionOfTileEntitiesAndBooleansForGas(IGasSource tileentity, boolean bool)
|
|
{
|
|
source = tileentity;
|
|
ticked = bool;
|
|
}
|
|
|
|
public IGasSource source;
|
|
public boolean ticked = false;
|
|
|
|
}
|