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

/// 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.
pub(crate) fn new(opts: Opts) -> Universe {
    unimplemented!()
}