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