16 lines
311 B
Java
16 lines
311 B
Java
|
package resonantinduction.old.api.coding;
|
||
|
|
||
|
/**
|
||
|
* IDs that an item can load/save a program
|
||
|
*
|
||
|
* @author Darkguardsman
|
||
|
*/
|
||
|
public interface IProgramItem
|
||
|
{
|
||
|
/** Sets the program into the item */
|
||
|
public void setProgram(IProgram program);
|
||
|
|
||
|
/** Gets the program from the item */
|
||
|
public IProgram getProgram();
|
||
|
}
|