aboutsummaryrefslogtreecommitdiff
path: root/src/Java/binnie/craftgui/minecraft/control/ControlMachineProgress.java
blob: f2a64e3e385a04add18f6feac8b0aaeaa55e017f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package binnie.craftgui.minecraft.control;

import binnie.craftgui.core.IWidget;
import binnie.craftgui.core.geometry.Position;
import binnie.craftgui.resource.Texture;

public class ControlMachineProgress
  extends ControlProgress
{
  public ControlMachineProgress(IWidget parent, int x, int y, Texture base, Texture progress, Position dir)
  {
    super(parent, x, y, base, progress, dir);
  }
}