node-ejs-renderer/node_modules/three/examples/jsm/renderers/common/Pipeline.js
2024-06-09 13:55:01 -04:00

14 lines
130 B
JavaScript

class Pipeline {
constructor( cacheKey ) {
this.cacheKey = cacheKey;
this.usedTimes = 0;
}
}
export default Pipeline;