10 lines
166 B
C++
10 lines
166 B
C++
#include <sophia/application.hpp>
|
|
|
|
int main() {
|
|
sophia::Application app{{.width = 800, .height = 600, .name = "Triangle"}};
|
|
|
|
app.run();
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|