mirror of
https://github.com/jiawanlong/Cesium-Examples.git
synced 2025-07-07 08:47:29 +00:00
15 lines
145 B
JavaScript
15 lines
145 B
JavaScript
class NodeVar {
|
|
|
|
constructor( name, type ) {
|
|
|
|
this.isNodeVar = true;
|
|
|
|
this.name = name;
|
|
this.type = type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export default NodeVar;
|