public void SetPlayerLocation(Location PlayerLocation) // Currently Does Nothing
 {
     this.PlayerLocation = PlayerLocation;
     OnPlayerLocationChanged(this, new MinecraftClientLocationEventArgs(this.PlayerLocation));
 }
 public MinecraftClientLocationEventArgs(Location PlayerLocation)
     : base()
 {
     this.PlayerLocation = PlayerLocation;
 }