mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 15:38:00 +01:00
7 lines
142 B
Java
7 lines
142 B
Java
package com.minelittlepony.unicopia.entity;
|
|
|
|
public interface Leaner {
|
|
float getLeaningPitch();
|
|
|
|
void setLeaningPitch(float pitch);
|
|
}
|