stuff-from-scratch/apps/console-main.cpp
2020-05-02 08:31:03 +01:00

16 lines
296 B
C++

#include <filesystem>
#include <unistd.h>
#include "MainApplication.h"
int main()
{
// Start the main app
auto main_app = MainApplication::Create();
main_app->Initialize(std::filesystem::current_path());
//main_app->RunServer();
main_app->PlayAudio();
main_app->ShutDown();
return 0;
}