@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
10 lines (8 loc) • 326 B
text/typescript
import {TypedContainer} from './_Base';
import {ContainableMap} from './utils/ContainableMap';
import {NodeContext} from '../poly/NodeContext';
export class ManagerContainer extends TypedContainer<NodeContext.MANAGER> {
override set_content(content: ContainableMap[NodeContext.MANAGER]) {
super.set_content(content);
}
}