2013-04-13 10:35:13 -04:00
|
|
|
package buildcraft.api.filler;
|
|
|
|
|
2013-12-26 15:00:08 -05:00
|
|
|
import buildcraft.api.gates.IAction;
|
|
|
|
import java.util.Set;
|
2013-04-13 10:35:13 -04:00
|
|
|
|
|
|
|
public interface IFillerRegistry {
|
|
|
|
|
2013-12-26 15:00:08 -05:00
|
|
|
public void addPattern(IFillerPattern pattern);
|
2013-04-13 10:35:13 -04:00
|
|
|
|
2013-12-26 15:00:08 -05:00
|
|
|
public IFillerPattern getPattern(String patternName);
|
2013-04-13 10:35:13 -04:00
|
|
|
|
2013-12-26 15:00:08 -05:00
|
|
|
public IFillerPattern getNextPattern(IFillerPattern currentPattern);
|
2013-04-13 10:35:13 -04:00
|
|
|
|
2013-12-26 15:00:08 -05:00
|
|
|
public IFillerPattern getPreviousPattern(IFillerPattern currentPattern);
|
|
|
|
|
|
|
|
public Set<? extends IAction> getActions();
|
2013-04-13 10:35:13 -04:00
|
|
|
}
|