public void RemoveMarker(int x, int y, int z) { RadarMarker newMarker = new RadarMarker(x, y, z); _markers.Remove(newMarker); _player.SendPacketAsync(new RadarControl(1, 1, x, y, z)); }
public void AddMarker(int x, int y, int z) { RadarMarker newMarker = new RadarMarker(x, y, z); _markers.Add(newMarker); _player.SendPacketAsync(new RadarControl(2, 2, x, y, z)); _player.SendPacketAsync(new RadarControl(0, 1, x, y, z)); }