Update IControllable.java

This commit is contained in:
asiekierka 2014-12-01 10:15:44 +01:00
parent a7f087f598
commit a5b4dc3742
2 changed files with 2 additions and 2 deletions

View file

@ -6,6 +6,6 @@
* License 1.0, or MMPL. Please check the contents of the license located in
* http://www.mod-buildcraft.com/MMPL-1.0.txt
*/
@API(apiVersion = "1.2", owner = "BuildCraft|Core", provides = "BuildCraftAPI|core")
@API(apiVersion = "1.3", owner = "BuildCraft|Core", provides = "BuildCraftAPI|core")
package buildcraft.api.core;
import cpw.mods.fml.common.API;

View file

@ -15,7 +15,7 @@ package buildcraft.api.tiles;
*/
public interface IControllable {
public enum Mode {
Unknown, On, Off, Loop
Unknown, On, Off, Mode, Loop
}
/**