mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-12-01 08:47:59 +01:00
8 lines
142 B
Java
8 lines
142 B
Java
|
package com.minelittlepony.unicopia.entity;
|
||
|
|
||
|
public interface Leaner {
|
||
|
float getLeaningPitch();
|
||
|
|
||
|
void setLeaningPitch(float pitch);
|
||
|
}
|