pxt-ev3/sim/visuals/nodes/ultrasonicView.ts

10 lines
288 B
TypeScript
Raw Permalink Normal View History

/// <reference path="./sensorView.ts" />
2017-12-18 22:04:17 +01:00
namespace pxsim.visuals {
export class UltrasonicSensorView extends SensorView implements LayoutElement {
2017-12-18 22:04:17 +01:00
constructor(port: number) {
super(ULTRASONIC_SVG, "ultrasonic", NodeType.UltrasonicSensor, port);
}
}
}