58992d0786
Meteorite Spawning Complete. Removed a lot of test Logging.
15 lines
273 B
Java
15 lines
273 B
Java
package appeng.services.helpers;
|
|
|
|
public interface ICompassCallback
|
|
{
|
|
|
|
/**
|
|
* Called from another thread.
|
|
*
|
|
* @param hasResult
|
|
* @param spin
|
|
* @param radians
|
|
*/
|
|
public void calculatedDirection(boolean hasResult, boolean spin, double radians, double dist);
|
|
|
|
}
|