17 lines
259 B
C++
17 lines
259 B
C++
#include "Application.h"
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
Application app;
|
|
|
|
if (!app.Initialize()) {
|
|
std::cerr << "Failed to initialize application\n";
|
|
return -1;
|
|
}
|
|
|
|
app.Run();
|
|
app.Shutdown();
|
|
|
|
return 0;
|
|
}
|