remove impl const

This commit is contained in:
2025-12-03 10:44:07 -05:00
parent 75092e7d9f
commit 53cb50316e
5 changed files with 31 additions and 15 deletions

View File

@@ -46,7 +46,7 @@ pub trait Offset {
fn offset_x(self, x_offset: f32) -> Pos2;
}
impl const Offset for Pos2 {
impl Offset for Pos2 {
fn offset_y(self, y_offset: f32) -> Pos2 {
Pos2 {
x: self.x,