Skip to content
Snippets Groups Projects
Select Git revision
  • 054c17e6a2f62598543b961a3f8ede27fd33cff8
  • main default protected
  • v2.0.0 protected
  • v1.0.0 protected
4 results

conftest.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    main.cpp 292 B
    #include <iostream>
    
    #include <game/Game.hpp>
    
    int main(int argc, const char * argv[]) {
        std::cout << "Programe Start" << std::endl;
        megu::game::Game game("My Game");
        std::cout << "Game Start" << std::endl;
        
        std::cout << "Running..." << std::endl;
        return game.run();
    }