summaryrefslogtreecommitdiffstats
path: root/CLI/rust/src/game_of_life/generators/seed.rs
blob: d280effb7f4783484ce6a454d7ed9849be178705 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::game_of_life::opts::Opts;
use crate::game_of_life::universe::Universe;
use clap::Error;

#[cfg(test)]
use mocktopus::macros::mockable;

/// Generate a new Universe/Board from a seed number
///
/// The generation of the seed should be stable across different machines
/// using the same language package, version, width and height.
#[cfg_attr(test, mockable)]
pub(crate) fn new(_opts: Opts) -> Result<Universe, Error> {
    unimplemented!()
}