aboutsummaryrefslogtreecommitdiff
path: root/comp2511/blackout/DesktopDevice.java
blob: 541141127c9f7fdc95c3e1a7dd11f30d1a0a7405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package unsw.blackout;

import unsw.utils.Angle;

public class DesktopDevice extends DeviceBase {
    public DesktopDevice(String deviceID, Angle position) {
        super(deviceID, position);
    }

    @ Override
    final public double getRange() {
        return 200_000.0;
    }
}