organicomplex 0.7.0

Interactive complex-valued cellular automaton on 2D and 3D grids in search of that stuff - emergence, open-endedness, organicity etc.
1
2
3
4
5
6
7
8
use super::System;

impl System {
    /// Time since start in microseconds
    pub fn now(&self) -> i128 {
        self.time.now()
    }
}