aboutsummaryrefslogtreecommitdiff
path: root/comp2511/blackout/HandheldDevice.java
blob: 587d7a48fdbd25a60952910be5ba42aa364e1187 (plain)
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;
    }
}