mirror of
https://github.com/google0101-ryan/Emotional.git
synced 2025-04-02 10:32:07 -04:00
14 lines
No EOL
288 B
C++
14 lines
No EOL
288 B
C++
#include <app/Application.h>
|
|
#include <cstdlib>
|
|
#include <cstdio>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
if (!Application::Init(argc, argv))
|
|
{
|
|
printf("[src/Main]: %s: Error initializing main app class\n", __FUNCTION__);
|
|
exit(1);
|
|
}
|
|
|
|
return Application::Run();
|
|
} |