mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-04 16:49:42 -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;
|
|
} |