blob: 909fd7d5fbd13a4a95dea4c0cba3a06555f43c39 [file] [log] [blame] [raw]
package mekanism.common;
import mekanism.api.EnumColor;
public class SideData
{
/** The color of this SideData */
public EnumColor color;
/** Int[] of available side slots */
public int[] availableSlots;
public SideData(EnumColor colour, int[] slots)
{
color = colour;
availableSlots = slots;
}
}