1 2 3 4 5 6 7 8 9 10 11 12 13 14
package unsw.blackout; import unsw.utils.Angle; public class HandheldDevice extends DeviceBase { public HandheldDevice(String deviceID, Angle position) { super(deviceID, position); } @ Override public double getRange() { return 50_000.0; } }