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