Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // MyWindow.hpp
- #ifndef MYWINDOW_HPP
- #define MYWINDOW_HPP
- #include <iostream>
- class MyWindow {
- public:
- MyWindow(); // Construtor
- ~MyWindow(); // Destruidor
- void run(); // Método para rodar o loop de eventos
- private:
- void handleEvent(); // Método para lidar com eventos (ex: mouse e teclado)
- };
- #endif // MYWINDOW_HPP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement