You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
240B

  1. #pragma once
  2. #include "common.hpp"
  3. #include "engine/Module.hpp"
  4. namespace rack {
  5. struct Cable {
  6. int id = 0;
  7. Module *outputModule = NULL;
  8. int outputId;
  9. Module *inputModule = NULL;
  10. int inputId;
  11. void step();
  12. };
  13. } // namespace rack