30 lines
319 B
JavaScript
30 lines
319 B
JavaScript
|
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(){
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|