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.

23 lines
410 B

  1. #include <iostream>
  2. #include <thread>
  3. #include <chrono>
  4. #include "components/Point.h"
  5. #include "input-output/Graphics.h"
  6. void mainL01() {
  7. Graphics::get().init("Learners Helper");
  8. Point p(10,10,'X');
  9. p.print();
  10. std::this_thread::sleep_for(std::chrono::seconds(10));
  11. Graphics::get().finalize();
  12. std::cout << "Helper QUIT" << std::endl;
  13. }
  14. int main() {
  15. mainL01();
  16. return 0;
  17. }