rmg-001/src/ppu.rs

8 lines
78 B
Rust
Raw Normal View History

pub struct PPU;
impl PPU {
pub fn new() -> Self {
Self{}
}
}