NodeOutput.js 200 B

12345678910111213141516
  1. import {Circle} from "../Circle";
  2. /**
  3. * TODO
  4. *
  5. * @class NodeInput
  6. */
  7. function NodeOutput()
  8. {
  9. Circle.call(this);
  10. }
  11. NodeOutput.prototype = Object.create(Circle.prototype);
  12. export {NodeOutput};