mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
6 lines
98 B
Java
6 lines
98 B
Java
|
package com.minelittlepony.unicopia.entity;
|
||
|
|
||
|
public interface Jumper {
|
||
|
boolean isJumping();
|
||
|
}
|