mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
16 lines
377 B
Java
16 lines
377 B
Java
package com.minelittlepony.unicopia.entity;
|
|
|
|
public interface Leaner {
|
|
float getLeaningPitch();
|
|
|
|
void setLeaningPitch(float pitch);
|
|
|
|
float getLastLeaningPitch();
|
|
|
|
void setLastLeaningPitch(float pitch);
|
|
|
|
default void copyFrom(Leaner other) {
|
|
setLeaningPitch(other.getLeaningPitch());
|
|
setLastLeaningPitch(other.getLastLeaningPitch());
|
|
}
|
|
}
|