lol idk #1

Open
Quaternions wants to merge 826 commits from StrafesNET/strafe-project:master into master
3 changed files with 5 additions and 5 deletions
Showing only changes of commit ac5ef8f9be - Show all commits

View File

@ -1,2 +1,2 @@
pub mod wide;
pub mod fixed;
pub mod types;

View File

@ -1,4 +1,4 @@
pub type I32F32=crate::wide::Fixed<1,typenum::consts::U32>;
pub type I64F64=crate::wide::Fixed<2,typenum::consts::U64>;
pub type I128F128=crate::wide::Fixed<4,typenum::consts::U128>;
pub type I256F256=crate::wide::Fixed<8,typenum::consts::U256>;
pub type I32F32=crate::fixed::Fixed<1,typenum::consts::U32>;
pub type I64F64=crate::fixed::Fixed<2,typenum::consts::U64>;
pub type I128F128=crate::fixed::Fixed<4,typenum::consts::U128>;
pub type I256F256=crate::fixed::Fixed<8,typenum::consts::U256>;