buildcraft/api/buildcraft/api/filler/IFillerRegistry.java

24 lines
679 B
Java
Raw Normal View History

2014-02-15 09:21:40 +01:00
/**
* Copyright (c) 2011-2014, SpaceToad and the BuildCraft Team
* http://www.mod-buildcraft.com
*
* The BuildCraft API is distributed under the terms of the MIT License.
* Please check the contents of the license, which should be located
* as "LICENSE.API" in the BuildCraft source code distribution.
2014-02-15 09:21:40 +01:00
*/
2012-07-25 12:45:15 +02:00
package buildcraft.api.filler;
2012-05-09 22:43:05 +02:00
2014-10-18 16:23:01 +02:00
import java.util.Collection;
2012-05-09 22:43:05 +02:00
public interface IFillerRegistry {
void addPattern(IFillerPattern pattern);
IFillerPattern getPattern(String patternName);
2012-06-04 22:48:18 +02:00
IFillerPattern getNextPattern(IFillerPattern currentPattern);
2012-06-04 22:48:18 +02:00
IFillerPattern getPreviousPattern(IFillerPattern currentPattern);
2014-10-18 16:23:01 +02:00
Collection<IFillerPattern> getPatterns();
2012-05-09 22:43:05 +02:00
}