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