mirror of
https://github.com/jiawanlong/Cesium-Examples.git
synced 2025-07-07 08:47:29 +00:00
12 lines
127 B
JavaScript
12 lines
127 B
JavaScript
![]() |
class NodeParser {
|
||
|
|
||
|
parseFunction( /*source*/ ) {
|
||
|
|
||
|
console.warn( 'Abstract function.' );
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export default NodeParser;
|