Files
sophia/testbed/main.cpp
T
2026-08-23 20:46:40 -07:00

16 lines
316 B
C++

#include <iostream>
#include <sophia/application.hpp>
#include <stdexcept>
int main(int argc, const char** argv) {
(void)argc;
(void)argv;
std::cout << __FILE__ << "::" << __LINE__ << '\n';
sophia::Application app{{.width = 750, .height = 1000, .name = "Testbed"}};
app.run();
return EXIT_SUCCESS;
}