Archived
0

player isFlying

This commit is contained in:
2018-04-30 00:37:39 +03:00
parent e788841f04
commit 80a351adfd
4 changed files with 23 additions and 1 deletions

View File

@@ -19,4 +19,7 @@ public interface Player {
Look getLook();
void setLook(Look look);
boolean isFlying();
void setFlying(boolean value);
}

View File

@@ -18,4 +18,5 @@ public class SimplePlayer implements Player {
private NetChannel channel;
private Location location = new Location(0, 0, 0);
private Look look = new Look(0, 0);
private boolean flying = false;
}