#include "constants.h" #include "glfw_context.h" #include "window.h" #include int main(int, char **) { GlfwContext glfw = {}; Context context = { "Aster", VERSION }; Window window = { "Aster1", &context, { 640, 480 } }; while (window.poll()) { } return 0; }