graphics api

This commit is contained in:
Able 2022-02-14 07:48:41 -06:00
parent 40bd10d7af
commit 7f8a7e92a5

View file

@ -0,0 +1,7 @@
use super::positions::Position2D;
use super::pixel_format::Rgba;
pub type FontSize = u32;
pub fn draw_char(position: Position2D, character: char, size: FontSize, color: Rgba) {}