Files
maintenance_system/public/sdk/three/jsm/renderers/common/Pipeline.js

14 lines
130 B
JavaScript
Raw Normal View History

2025-10-11 09:56:33 +08:00
class Pipeline {
constructor( cacheKey ) {
this.cacheKey = cacheKey;
this.usedTimes = 0;
}
}
export default Pipeline;