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
395 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. std::this_thread::sleep_for(std::chrono::seconds(10));
  10. Graphics::get().finalize();
  11. std::cout << "Helper QUIT" << std::endl;
  12. }
  13. int main() {
  14. mainL01();
  15. return 0;
  16. }