1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
<?php
// automatically generated by the FlatBuffers compiler, do not modify
namespace MyGame;
use \Google\FlatBuffers\Struct;
use \Google\FlatBuffers\Table;
use \Google\FlatBuffers\ByteBuffer;
use \Google\FlatBuffers\FlatBufferBuilder;
class InParentNamespace extends Table
{
/**
* @param ByteBuffer $bb
* @return InParentNamespace
*/
public static function getRootAsInParentNamespace(ByteBuffer $bb)
{
$obj = new InParentNamespace();
return ($obj->init($bb->getInt($bb->getPosition()) + $bb->getPosition(), $bb));
}
public static function InParentNamespaceIdentifier()
{
return "MONS";
}
public static function InParentNamespaceBufferHasIdentifier(ByteBuffer $buf)
{
return self::__has_identifier($buf, self::InParentNamespaceIdentifier());
}
public static function InParentNamespaceExtension()
{
return "mon";
}
/**
* @param int $_i offset
* @param ByteBuffer $_bb
* @return InParentNamespace
**/
public function init($_i, ByteBuffer $_bb)
{
$this->bb_pos = $_i;
$this->bb = $_bb;
return $this;
}
/**
* @param FlatBufferBuilder $builder
* @return void
*/
public static function startInParentNamespace(FlatBufferBuilder $builder)
{
$builder->StartObject(0);
}
/**
* @param FlatBufferBuilder $builder
* @return InParentNamespace
*/
public static function createInParentNamespace(FlatBufferBuilder $builder, )
{
$builder->startObject(0);
$o = $builder->endObject();
return $o;
}
/**
* @param FlatBufferBuilder $builder
* @return int table offset
*/
public static function endInParentNamespace(FlatBufferBuilder $builder)
{
$o = $builder->endObject();
return $o;
}
}
|