| 21 | import lombok.Setter; |
| 22 | |
| 23 | public class Point implements MapPoint { |
| 24 | @Getter |
| 25 | @Setter |
| 26 | private double longitude; |
| 27 | @Getter |
| 28 | @Setter |
| 29 | private double latitude; |
| 30 | |
| 31 | public Point(double latitude, double longitude) { |
| 32 | this.latitude = latitude; |
| 33 | this.longitude = longitude; |
| 34 | } |
| 35 | |
| 36 | public Point(SpawnPointOuterClass.SpawnPoint spawnpoint) { |
| 37 | this.latitude = spawnpoint.getLatitude(); |
| 38 | this.longitude = spawnpoint.getLongitude(); |
| 39 | } |
| 40 | } |
nothing calls this directly
no outgoing calls
no test coverage detected