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

options.h

Blame
  • main.cpp 381 B
    // file      : src/main.cpp
    // copyright : Copyright (c) 2018-present, Lava Block OÜ and contributors
    // license   : MIT; see accompanying LICENSE file
    
    #include <imgui.h>
    #include <liblava/lava.hpp>
    
    using namespace lava;
    
    int main(int argc, char* argv[]) {
        app app("template", { argc, argv });
        if (!app.setup())
            return error::not_ready;
    
        return app.run();
    }