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

#[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) -> Universe {
    unimplemented!()
}