mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-09 22:06:09 +01:00
9 lines
130 B
Java
9 lines
130 B
Java
|
package com.jozufozu.flywheel.util;
|
||
|
|
||
|
public class RenderMath {
|
||
|
|
||
|
public static byte nb(float f) {
|
||
|
return (byte) (f * 127);
|
||
|
}
|
||
|
}
|