Blank window
This commit is contained in:
12
source/app/main.cpp
Normal file
12
source/app/main.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#include <iterator>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "App.hpp"
|
||||
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
auto args = std::vector<std::string>{};
|
||||
std::copy_n(argv, argc, std::back_inserter(args));
|
||||
return App::main(args);
|
||||
}
|
||||
Reference in New Issue
Block a user