added log wrapper

This commit is contained in:
LunarAkai 2025-07-28 19:50:49 +02:00
commit 237dd614a2
15 changed files with 213 additions and 59 deletions

View file

@ -0,0 +1,7 @@
[package]
name = "moonhare_graphics"
edition = "2024"
version.workspace = true
authors.workspace = true
[dependencies]

View file

View file

View file

@ -0,0 +1,4 @@
/// Crate for providing an abstraction layer over different graphics APIs
pub mod graphics_server;
pub mod shader;

View file

@ -0,0 +1,4 @@
pub enum ShaderType {
Vertex,
Fragment,
}