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

10 lines
294 B
TypeScript
Raw Normal View History

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