forked from AbleOS/ableos
12 lines
153 B
Rust
12 lines
153 B
Rust
pub mod clparse;
|
|
pub mod encoding;
|
|
pub mod image;
|
|
pub mod math;
|
|
pub mod network;
|
|
pub mod time;
|
|
|
|
pub struct VectorTwo {
|
|
pub x: i32,
|
|
pub y: i32,
|
|
}
|