Fix compile

This commit is contained in:
vemacs 2016-03-18 10:18:13 -06:00
parent 7f8c801c07
commit d57f7af453

View file

@ -1223,6 +1223,16 @@ public class OfflinePlayer implements Player {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public boolean isGliding() {
return false;
}
@Override
public void setGliding(boolean b) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public <T extends Projectile> T launchProjectile(Class<? extends T> type, Vector vector) {
throw new UnsupportedOperationException("Not supported yet.");