mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 15:38:00 +01:00
17 lines
307 B
Java
17 lines
307 B
Java
package com.minelittlepony.unicopia.entity;
|
|
|
|
/**
|
|
* Interface for controlling flight.
|
|
*/
|
|
public interface FlightControl {
|
|
/**
|
|
* True is we're currently flying.
|
|
*/
|
|
boolean isFlying();
|
|
|
|
float getFlightExperience();
|
|
|
|
float getFlightDuration();
|
|
|
|
boolean isExperienceCritical();
|
|
}
|