universal-electricity/src/main/java/universalelectricity/api/vector/IRotation.java
2023-07-16 12:31:56 +02:00

13 lines
230 B
Java

package universalelectricity.api.vector;
/** Simple interface to define that an object has rotation
*
* @author DarkGuardsman */
public interface IRotation
{
double yaw();
double pitch();
double roll();
}