2014-03-02 09:35:11 +01:00
|
|
|
package appeng.services.helpers;
|
|
|
|
|
|
|
|
public interface ICompassCallback
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called from another thread.
|
|
|
|
*
|
|
|
|
* @param hasResult
|
|
|
|
* @param spin
|
|
|
|
* @param radians
|
|
|
|
*/
|
2014-03-03 00:18:15 +01:00
|
|
|
public void calculatedDirection(boolean hasResult, boolean spin, double radians, double dist);
|
2014-03-02 09:35:11 +01:00
|
|
|
|
|
|
|
}
|