minecraft-pi-reborn/launcher/src/server/launcher.c

20 lines
428 B
C
Raw Normal View History

#include <stdlib.h>
#include <unistd.h>
2022-07-20 06:58:14 +00:00
#include <libreborn/libreborn.h>
2021-06-17 21:32:24 +00:00
#include "../bootstrap.h"
int main(int argc, char *argv[]) {
2022-03-10 04:29:37 +00:00
// Pre-Bootstrap
pre_bootstrap(argc, argv);
2022-03-10 04:29:37 +00:00
// Set Home To Current Directory, So World Data Is Stored There
char *launch_directory = getcwd(NULL, 0);
2022-03-10 03:08:47 +00:00
set_and_print_env("HOME", launch_directory);
free(launch_directory);
2021-06-17 21:32:24 +00:00
// Bootstrap
bootstrap(argc, argv);
}