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

14 lines
217 B
Rust
Raw Normal View History

//! A simple reimplimentation of the the rust standard library
2022-01-01 18:06:46 -06:00
pub mod clparse;
2022-01-18 06:15:51 -06:00
pub mod encoding;
2021-11-28 23:45:23 -06:00
pub mod image;
2021-11-16 00:09:27 -06:00
pub mod math;
pub mod network;
2021-11-16 00:09:27 -06:00
pub mod time;
2022-01-18 06:15:51 -06:00
2021-11-16 00:09:27 -06:00
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
}