tetanes 0.14.0

A cross-platform NES Emulator written in Rust using wgpu
1
2
3
4
5
6
7
8
9
10
11
12
use crate::sys::{SystemInfo, SystemStats};

#[derive(Default, Debug)]
pub struct System {}

impl SystemInfo for System {
    fn update(&mut self) {}

    fn stats(&self) -> Option<SystemStats> {
        None
    }
}