This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| abstract Fixed16(Int) { | |
| inline function new(x:Int) this = x; | |
| inline function raw() return this; | |
| inline static function RAW(x:Int) return new Fixed16(x); | |
| public static var MAX_VALUE:Fixed16 = RAW(0x7fffffff); | |
| public static var MIN_VALUE:Fixed16 = RAW(1); | |
| @:from public static inline function fromf(x:Float) { | |
| #if debug |