player isFlying
This commit is contained in:
@@ -19,4 +19,7 @@ public interface Player {
|
||||
|
||||
Look getLook();
|
||||
void setLook(Look look);
|
||||
|
||||
boolean isFlying();
|
||||
void setFlying(boolean value);
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user