mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-07 05:47:36 +00:00
Added missing generated code files.
Change-Id: Ie1cab284cb6e0fe5bd2b2c293c3136c148927ac3
This commit is contained in:
30
tests/MyGame/Example/Referrable.py
Normal file
30
tests/MyGame/Example/Referrable.py
Normal file
@@ -0,0 +1,30 @@
|
||||
# automatically generated by the FlatBuffers compiler, do not modify
|
||||
|
||||
# namespace: Example
|
||||
|
||||
import flatbuffers
|
||||
|
||||
class Referrable(object):
|
||||
__slots__ = ['_tab']
|
||||
|
||||
@classmethod
|
||||
def GetRootAsReferrable(cls, buf, offset):
|
||||
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
|
||||
x = Referrable()
|
||||
x.Init(buf, n + offset)
|
||||
return x
|
||||
|
||||
# Referrable
|
||||
def Init(self, buf, pos):
|
||||
self._tab = flatbuffers.table.Table(buf, pos)
|
||||
|
||||
# Referrable
|
||||
def Id(self):
|
||||
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
||||
if o != 0:
|
||||
return self._tab.Get(flatbuffers.number_types.Uint64Flags, o + self._tab.Pos)
|
||||
return 0
|
||||
|
||||
def ReferrableStart(builder): builder.StartObject(1)
|
||||
def ReferrableAddId(builder, id): builder.PrependUint64Slot(0, id, 0)
|
||||
def ReferrableEnd(builder): return builder.EndObject()
|
||||
Reference in New Issue
Block a user