NodeInput.js 197 B

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