mirror of
https://github.com/jiawanlong/Cesium-Examples.git
synced 2025-07-05 15:47:34 +00:00
14 lines
130 B
JavaScript
14 lines
130 B
JavaScript
class Pipeline {
|
|
|
|
constructor( cacheKey ) {
|
|
|
|
this.cacheKey = cacheKey;
|
|
|
|
this.usedTimes = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export default Pipeline;
|