Add.hx 216 B

123456789101112131415
  1. package hrt.shgraph.nodes;
  2. using hxsl.Ast;
  3. @name("Add")
  4. @description("The output is the result of A + B")
  5. @width(80)
  6. @group("Operation")
  7. class Add extends Operation {
  8. public function new() {
  9. super(OpAdd);
  10. }
  11. }