1
0
Fork 0
forked from koniifer/ableos
ableos-framebuffer/ableos/src/relib/mod.rs

8 lines
100 B
Rust
Raw Normal View History

2021-11-28 23:45:23 -06:00
pub mod image;
2021-11-16 00:09:27 -06:00
pub mod math;
pub mod time;
pub struct VectorTwo {
2021-11-28 20:54:43 -06:00
pub x: i32,
pub y: i32,
2021-11-16 00:09:27 -06:00
}