summaryrefslogtreecommitdiffstats
path: root/CLI/rust/src/game_of_life/generators.rs
diff options
context:
space:
mode:
Diffstat (limited to 'CLI/rust/src/game_of_life/generators.rs')
-rw-r--r--CLI/rust/src/game_of_life/generators.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/CLI/rust/src/game_of_life/generators.rs b/CLI/rust/src/game_of_life/generators.rs
new file mode 100644
index 0000000..16bd7c3
--- /dev/null
+++ b/CLI/rust/src/game_of_life/generators.rs
@@ -0,0 +1,4 @@
+/// Generate a new Universe/Board from a parsed local file or remote URL/file
+pub(crate) mod input;
+/// Generate a new Universe/Board from a seed number
+pub(crate) mod seed;