summaryrefslogtreecommitdiffstats
path: root/CLI/rust/src/game_of_life/generators.rs
diff options
context:
space:
mode:
authora14m <[email protected]>2021-04-04 01:08:05 +0200
committera14m <[email protected]>2021-04-04 01:08:05 +0200
commitc9084a6aa4b234fdb77b838bc1fb903145a6b88f (patch)
tree9ec97daf4536069ff87dbae11a5832c456f7bd78 /CLI/rust/src/game_of_life/generators.rs
parent6bd9a672034b2ad1202fec3ecdc9cd6e69288e49 (diff)
Add the skeleton of the generators modules/methods
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;