lol idk #1

Open
Quaternions wants to merge 826 commits from StrafesNET/strafe-project:master into master
Showing only changes of commit 0ff4de3d38 - Show all commits

View File

@ -27,7 +27,7 @@ pub struct Realtime{
offset:Time,
}
impl Realtime{
const fn new(offset:Time)->Self{
pub const fn new(offset:Time)->Self{
Self{offset}
}
}
@ -38,7 +38,7 @@ pub struct Scaled{
offset:Time,
}
impl Scaled{
const fn new(scale:Ratio64,offset:Time)->Self{
pub const fn new(scale:Ratio64,offset:Time)->Self{
Self{scale,offset}
}
const fn with_scale(scale:Ratio64)->Self{