rt-sim-training-client/src/jlmap3d/edit/editmodel/SwitchList.js

30 lines
319 B
JavaScript
Raw Normal View History

2019-07-26 13:32:43 +08:00
import {SwitchModel} from '@/jlmap3d/model/SwitchModel.js';
export function SwitchList() {
this.type = "switchlist";
this.list = null;
this.init = function(){
}
this.update = function(){
}
this.renderon = function(){
}
this.renderoff = function(){
}
this.dispose = function(){
}
}