main.cpp 263 B

1234567891011121314151617
  1. #include <iostream>
  2. #include <ctime>
  3. #include "throttle.h"
  4. #include "drone.h"
  5. using namespace std;
  6. using namespace main_stronglogic;
  7. drone my_drone;
  8. int main() {
  9. std::cout << "Beginning drone program" << std::endl;
  10. my_drone.explore();
  11. return 0;
  12. }