mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-05 00:59:14 -04:00
11 lines
210 B
C++
11 lines
210 B
C++
#include "randomizer.hpp"
|
|
|
|
#include <filesystem>
|
|
|
|
int main() {
|
|
std::filesystem::create_directories(RANDO_SAVE_PATH);
|
|
randomizer::Randomizer rando{RANDO_SAVE_PATH};
|
|
rando.Generate();
|
|
|
|
return 0;
|
|
} |