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