feat: Added optional param for seed

This commit is contained in:
2024-04-16 20:43:43 +02:00
parent d6e506eaeb
commit 0467f94fd3
3 changed files with 16 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
#pragma once
void generate(short min_char_count, short max_char_count, short min_num_count, short max_num_count, int count);
void generate(short min_char_count, short max_char_count, short min_num_count, short max_num_count, int count, std::string seed);