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.

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