nanobot-voice-interface/frontend/node_modules/three/examples/jsm/renderers/common/Pipeline.js

14 lines
130 B
JavaScript
Raw Normal View History

2026-03-06 22:51:19 -05:00
class Pipeline {
constructor( cacheKey ) {
this.cacheKey = cacheKey;
this.usedTimes = 0;
}
}
export default Pipeline;