project-aster/aster_core/aster.cpp

16 lines
278 B
C++

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