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;
|
2022-01-16 09:23:19 -06:00
|
|
|
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
|
|
|
}
|