You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
738 B
27 lines
738 B
-- automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
-- namespace: Example2
|
|
|
|
local flatbuffers = require('flatbuffers')
|
|
|
|
local Monster = {} -- the module
|
|
local Monster_mt = {} -- the class metatable
|
|
|
|
function Monster.New()
|
|
local o = {}
|
|
setmetatable(o, {__index = Monster_mt})
|
|
return o
|
|
end
|
|
function Monster.GetRootAsMonster(buf, offset)
|
|
local n = flatbuffers.N.UOffsetT:Unpack(buf, offset)
|
|
local o = Monster.New()
|
|
o:Init(buf, n + offset)
|
|
return o
|
|
end
|
|
function Monster_mt:Init(buf, pos)
|
|
self.view = flatbuffers.view.New(buf, pos)
|
|
end
|
|
function Monster.Start(builder) builder:StartObject(0) end
|
|
function Monster.End(builder) return builder:EndObject() end
|
|
|
|
return Monster -- return the module |