summaryrefslogtreecommitdiff
path: root/webhogg/wasm/src/context/graphics.rs
blob: 57955d061890b49a5343575e4731730dd3d21d06 (plain)
1
2
3
4
5
6
7
8
9
10
11
use crate::error::WasmError;

pub struct GraphicsContext {
}

impl GraphicsContext {
    pub fn from_canvas() -> Result<Self, WasmError> {
        Ok(Self {
        })
    }
}