46        $this->actorUniqueId = 
CommonTypes::getActorUniqueId($in);
 
   47        $this->actorRuntimeId = CommonTypes::getActorRuntimeId($in);
 
   48        $this->position = CommonTypes::getVector3($in);
 
   49        $this->direction = VarInt::readSignedInt($in);
 
   50        $this->title = CommonTypes::getString($in);
 
 
   54        CommonTypes::putActorUniqueId($out, $this->actorUniqueId);
 
   55        CommonTypes::putActorRuntimeId($out, $this->actorRuntimeId);
 
   56        CommonTypes::putVector3($out, $this->position);
 
   57        VarInt::writeSignedInt($out, $this->direction);
 
   58        CommonTypes::putString($out, $this->title);