blob: 8e75cbef6c63eaaa95833c88c8fd1720b787d9c1 [file] [log] [blame] [raw]
package appeng.api;
/**
* A Registry for locatable items, works based on serial numbers.
*/
public interface ILocateableRegistry {
/**
* Attempts to find the object with the serial specifed, if it can it returns the object.
* @param ser
* @return requestedObject, or null
*/
public abstract Object findLocateableBySerial(long ser);
}