ogsr_steam/src/XR_3DA.c

16 lines
249 B
C
Raw Normal View History

2020-10-05 01:47:53 +03:00
#include <stdio.h>
#include <windows.h>
int main()
{
char CurrentPath[FILENAME_MAX];
_getcwd(CurrentPath, sizeof(CurrentPath));
SetCurrentDirectory("bin_x64");
_getcwd(CurrentPath, sizeof(CurrentPath));
system("xrEngine.exe");
return 0;
}