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.

22 lines
281B

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