Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 399 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 399 Bytes
git submodule add https://github.com/garettbass/app include/app
git submodule update --init --recursive
// main.cpp
#include <app/app.inl>

int app::main(int argc, char* argv[]) {
    app::window* window = app::window::create("hello world");

    app::activate();
    window->activate();

    while (app::update(60) and !window->closed());
    delete window;

    return 0;
}