diff options
| author | Micha White <botahamec@outlook.com> | 2023-12-22 13:39:49 -0500 |
|---|---|---|
| committer | Micha White <botahamec@outlook.com> | 2023-12-22 13:39:49 -0500 |
| commit | ef59ee8eb6562dfd724c1cb0bbd37aebc7d798ad (patch) | |
| tree | ccc8f747268a587ccd285b69083dd565c144217a /engine/src/eval.rs | |
| parent | bc75b075ef59a6b3b04b8a7b060809b64e8886d0 (diff) | |
Move logic around
Diffstat (limited to 'engine/src/eval.rs')
| -rw-r--r-- | engine/src/eval.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/src/eval.rs b/engine/src/eval.rs index d5401d3..94849ce 100644 --- a/engine/src/eval.rs +++ b/engine/src/eval.rs @@ -93,7 +93,7 @@ impl Evaluation { } } - pub fn add(self, rhs: f32) -> Self { + pub fn add_f32(self, rhs: f32) -> Self { let Some(eval) = self.to_f32() else { return self; }; |
