mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-18 02:44:23 +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);
|
||
|
}
|