47 $this->action = Byte::readUnsigned($in);
48 $this->actorRuntimeId = CommonTypes::getActorRuntimeId($in);
49 $this->data = LE::readFloat($in);
50 $this->swingSource = CommonTypes::readOptional($in, CommonTypes::getString(...));
54 Byte::writeUnsigned($out, $this->action);
55 CommonTypes::putActorRuntimeId($out, $this->actorRuntimeId);
56 LE::writeFloat($out, $this->data);
57 CommonTypes::writeOptional($out, $this->swingSource, CommonTypes::putString(...));