Skip to content
Snippets Groups Projects
Select Git revision
  • c3354e2ac12e32ff23a7f8776e74e790d7d6ad3e
  • master default protected
2 results

turtle_frame.cpp

Blame
  • main.cpp 434 B
    ///
    /// @file       main.cpp
    /// @author     Armin Co
    ///
    /// @brief      The QPong game.
    ///
    
    #include <iostream>
    
    #include <gtkmm.h>
    
    #include "QWindow.hpp"
    
    /// @brief MAIN
    ///
    int main(int argc, char* argv[])
    {
        std::cout << "QPong -- starting" << std::endl;
        auto app = Gtk::Application::create(argc, argv, "de.armin-co.qpong");
    
        QWindow window;
        window.set_default_size(1920, 1080);
    
        return app->run(window);
    }