mirror of
https://github.com/SimplexDevelopment/Ephemis.git
synced 2025-04-02 21:43:15 +00:00
17 lines
538 B
Java
17 lines
538 B
Java
package io.github.simplexdevelopment.api.entity;
|
|
|
|
import io.github.simplexdevelopment.api.Displayable;
|
|
import io.github.simplexdevelopment.api.asset.BasicGUI;
|
|
import io.github.simplexdevelopment.api.asset.Vehicle;
|
|
import io.github.simplexdevelopment.api.inventory.PlayerInventory;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
public interface Player extends LivingEntity {
|
|
@NotNull Displayable getDisplayable();
|
|
|
|
@NotNull BasicGUI getGUI();
|
|
|
|
@NotNull PlayerInventory getInventory();
|
|
}
|