Home
last modified time | relevance | path

Searched defs:AddHp (Results 1 – 4 of 4) sorted by relevance

/third_party/flatbuffers/samples/lua/MyGame/Sample/
DMonster.lua111 function Monster.AddHp(builder, hp) builder:PrependInt16Slot(2, hp, 100) end function
/third_party/flatbuffers/tests/MyGame/Example/
DMonster.lua586 function Monster.AddHp(builder, hp) builder:PrependInt16Slot(2, hp, 100) end function
DMonster.cs322 public static void AddHp(FlatBufferBuilder builder, short hp) { builder.AddShort(2, hp, 100); } in AddHp() method
DMonster.py806 def AddHp(builder, hp): builder.PrependInt16Slot(2, hp, 100) function