mirror of
https://github.com/jiawanlong/Cesium-Examples.git
synced 2025-07-06 08:17:31 +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;
|