rt-graphic-component/components/packages/Station/GPStation.js
joylink_zhaoerwei 3c81ca8a83 重新打包
2024-01-11 13:38:16 +08:00

17 lines
329 B
JavaScript

import { JlStation } from './common/JlStation.js';
import { StyleType } from '../../common/common.js';
class GPStation extends JlStation {
constructor() {
super(StyleType.GP);
}
get states() {
return this.getStates();
}
doRepaint() {
super.doRepaint();
}
}
export { GPStation };