Add.hx 221 B

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