Beat.h 114 B

12345678910
  1. #include <iostream>
  2. class Beat
  3. {
  4. void trigger()
  5. {
  6. std::cout << "\atick" << std::endl;
  7. }
  8. };