pleascach/pléascach.cpp
2024-01-10 20:49:03 -05:00

16 lines
236 B
C++

#include <GLFW/glfw3.h>
#include <window/window.hpp>
#include <iostream>
int main() {
try {
Window win("Test", 256, 256);
win.run();
} catch (std::exception& e) {
std::cerr << "Exception: " << e.what() << std::endl;
}
}