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