@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
17 lines (16 loc) • 477 B
JavaScript
;
import { NodeContext } from "../../poly/NodeContext";
import { NodeParamsConfig } from "../utils/params/ParamsConfig";
import { TypedNode } from "../_Base";
class ParamLessNetworkEventParamsConfig extends NodeParamsConfig {
}
export class BaseNetworkEventNode extends TypedNode {
static context() {
return NodeContext.EVENT;
}
cook() {
this.cookController.endCook();
}
}
export class ParamLessBaseNetworkEventNode extends BaseNetworkEventNode {
}