This function returns the path of the folder the application executable is in. This will return the executable's folder, even if the program is launched with a different working directory.
Returns the starting folder the application is launched in.
#include "UltraEngine.h"
using namespace UltraEngine;
int main(int argc, const char* argv[])
{
Print(AppDir());
return 0;
}