25    public function __construct(
 
   30    public function getValue() : 
Vector3{ 
return $this->value; }
 
   32    public function getTime() : 
float{ 
return $this->time; }
 
   34    public static function read(ByteBufferReader $in) : 
self{
 
   35        $value = CommonTypes::getVector3($in);
 
   36        $time = LE::readFloat($in);
 
   44    public function write(ByteBufferWriter $out) : 
void{
 
   45        CommonTypes::putVector3($out, $this->value);
 
   46        LE::writeFloat($out, $this->time);