stuff-from-scratch/apps/console-main.cpp

17 lines
296 B
C++
Raw Normal View History

2020-05-02 07:31:03 +00:00
#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;
}