Window Name setable through app.run(...)

This commit is contained in:
Ano-sys
2025-04-03 18:56:00 +02:00
parent 847d39906d
commit 498b7594b7
3 changed files with 15 additions and 7 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
int main(){
try{
vapp::Vulkan app;
app.run(1200, 900);
app.run("Vulkan", 1200, 900);
}
catch(const std::exception& e){
std::cerr << e.what() << std::endl;