@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
13 lines (8 loc) • 352 B
TypeScript
import {NodeInstancePortReference} from "./node/NodeInstancePortReference";
export class Connection {
readonly id: number
readonly source: NodeInstancePortReference
readonly target: NodeInstancePortReference
setSource(endpoint: NodeInstancePortReference): void
setTarget(endpoint: NodeInstancePortReference): void
}