mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-23 04:24:16 -04:00
27 lines
644 B
Java
27 lines
644 B
Java
package stargatetech2.api;
|
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
import net.minecraftforge.fluids.Fluid;
|
|
import stargatetech2.api.stargate.IStargateNetwork;
|
|
|
|
public interface IStargateTechAPI {
|
|
/**
|
|
* @return The Fluid instance corresponding to Ionized Particles.
|
|
*/
|
|
public Fluid getIonizedParticlesFluidInstance();
|
|
|
|
/**
|
|
* @return The creative inventory tab used by StargateTech 2.
|
|
*/
|
|
public CreativeTabs getStargateTab();
|
|
|
|
/**
|
|
* @return The IStargateNetwork singleton instance.
|
|
*/
|
|
public IStargateNetwork getStargateNetwork();
|
|
|
|
/**
|
|
* @return The current IFactory instance.
|
|
*/
|
|
public IFactory getFactory();
|
|
} |