Merge commit '0f6aab9da6fe982218a01f4a5b896e65fcced437' as 'third_party/flatbuffers'

This commit is contained in:
Siarhei Fedartsou
2024-06-22 13:33:34 +02:00
1814 changed files with 326902 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
<?php
// automatically generated by the FlatBuffers compiler, do not modify
namespace MyGame\Example;
use \Google\FlatBuffers\Struct;
use \Google\FlatBuffers\Table;
use \Google\FlatBuffers\ByteBuffer;
use \Google\FlatBuffers\FlatBufferBuilder;
class Test extends Struct
{
/**
* @param int $_i offset
* @param ByteBuffer $_bb
* @return Test
**/
public function init($_i, ByteBuffer $_bb)
{
$this->bb_pos = $_i;
$this->bb = $_bb;
return $this;
}
/**
* @return short
*/
public function GetA()
{
return $this->bb->getShort($this->bb_pos + 0);
}
/**
* @return sbyte
*/
public function GetB()
{
return $this->bb->getSbyte($this->bb_pos + 2);
}
/**
* @return int offset
*/
public static function createTest(FlatBufferBuilder $builder, $a, $b)
{
$builder->prep(2, 4);
$builder->pad(1);
$builder->putSbyte($b);
$builder->putShort($a);
return $builder->offset();
}
}