17 lines
329 B
JavaScript
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 };
|