mirror of
https://github.com/jiawanlong/Cesium-Examples.git
synced 2025-07-07 00:37:30 +00:00
16 lines
196 B
JavaScript
16 lines
196 B
JavaScript
class NodeAttribute {
|
|
|
|
constructor( name, type, node = null ) {
|
|
|
|
this.isNodeAttribute = true;
|
|
|
|
this.name = name;
|
|
this.type = type;
|
|
this.node = node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export default NodeAttribute;
|