blob: fad40c275a5aeae4c242a36539339517ad3f469f [file] [log] [blame] [raw]
package ic2.api;
/**
* Interface implemented by the reactor chamber tile entity.
*/
public interface IReactorChamber {
/**
* Get the chamber's reactor.
*
* @return The reactor
*/
public IReactor getReactor();
}