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

import unsw.utils.Angle;

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

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