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