blob: 41c8f5d79e10078c1466397c051ae357259031cc (
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::simulation::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!()
}
|