organicomplex 0.7.0

Interactive complex-valued cellular automaton on 2D and 3D grids in search of that stuff - emergence, open-endedness, organicity etc.
use crate::{
	state::State,
	sys::System
};

/// For general Masters to communicate with each other. More "ephemeral" than State.
pub struct Ether {
	pub quit: bool,
	pub meta: bool,
	pub paused: bool, // changes after meta
	pub replay: bool, // when State has been reset (new or loaded), run Verse::play() anew
}

impl Ether {
	pub fn new(_sys: &System, _state: &mut State) -> Result<Self, String> {
		Ok(Self{
			quit: false,
			meta: false,
			paused: false,
			replay: false,
		})

	}

}