16 lines
259 B
C++
16 lines
259 B
C++
#include "Application.h"
|
|
#include "src/log/log.h"
|
|
|
|
int main() {
|
|
Application app;
|
|
|
|
if (!app.Initialize()) {
|
|
log_error("Failed to initialize application");
|
|
return -1;
|
|
}
|
|
|
|
app.Run();
|
|
app.Shutdown();
|
|
|
|
return 0;
|
|
} |