23 use GetTypeIdFromConstTrait;
25 public const ID = DynamicValueType::DOUBLE;
27 public function __construct(
31 protected static function readValue(ByteBufferReader $in) :
self{
32 return new self(LE::readDouble($in));
35 protected function writeValue(ByteBufferWriter $out) :
void{
36 LE::writeDouble($out, $this->value);