Skip to content
Snippets Groups Projects
Select Git revision
  • 2023ws
  • 2024ws default
  • 2022ws
  • 2021ws
  • 2020ws
  • 2018ws
  • 2019ws
  • 2017ws
  • 2016ws
9 results

loesung-2-3.c

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);
    }