buildcraft/api/buildcraft/api/statements/IActionReceptor.java

14 lines
464 B
Java
Raw Normal View History

2014-02-15 09:21:40 +01:00
/**
* Copyright (c) 2011-2014, SpaceToad and the BuildCraft Team
2012-05-09 22:43:05 +02:00
* http://www.mod-buildcraft.com
2014-02-15 09:21:40 +01:00
*
* 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.
2012-05-09 22:43:05 +02:00
*/
package buildcraft.api.statements;
2012-05-09 22:43:05 +02:00
public interface IActionReceptor {
void actionActivated(IStatement statement, IStatementParameter[] parameters);
2012-05-09 22:43:05 +02:00
}