project-aster/aster_core/aster.cpp

16 lines
311 B
C++

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